"L"   | The content of the column is left aligned. Leading spaces are ignored.  | 
"R"   | The content of the column is right aligned. Trailing spaces are ignored.  | 
"C"   | The content of the column is centered. Leading and trailing spaces are ignored.  | 
"U"   | The content of the column is left aligned. Leading spaces are kept.  | 
ALIGNMENT = ("L", "C")  | 
       WORKING-STORAGE SECTION.        ...        01  Tree-Data.            03 Entry-Value pic x(20).            03 Detail-1    pic x(30).            03 Detail-2    pic x(50).        ...            SCREEN SECTION.        ...           03 screen-1-tv-1 tree-view table-view              line 2, col 2, lines 10, size 50 cells              column-headings, tiled-headings              display-columns (1, 15, 30), virtual-width 60              data-columns (record-position of Entry-Value,                            record-position of Detail-1,                            record-position of Detail-2)              alignment ("U", "C", "R").        ...  |