"L" | The content of the cell is left aligned. Leading spaces are ignored. |
"R" | The content of the cell is right aligned. Trailing spaces are ignored. |
"C" | The content of the cell is centered. Leading and trailing spaces are ignored. |
"U" | The content of the cell is left aligned. Leading spaces are kept. |
"H" | The content of the cell rendered as HTML. Note - leading spaces after the <html> tag are trimmed. |
ALIGNMENT = ("L", "C") |
procedure division ... modify screen-1-gr-1, alignment = spaces | Resets the list of values perform varying columnidx from 1 by 1 until columnidx > columncount modify screen-1-gr-1, alignment = columnalignment(columnidx) | Sets the alignment of the next column end-perform |