"characters" : R L C T U max-length
R means right justified and padded on the left with spaces: "Hello":R10 = " Hello".
L means left justified and padded on the right with spaces: "Hello":L10 = "Hello ".
C means centered within the string and padded on both the right and left as needed: "Hello":C10 = " Hello ".
T means trimmed of leading and trailing blanks (although storage space and screen space is still allocated for the maximum number of characters): " Hello":T10 = "Hello" (but screen and storage space is still reserved for 10 characters).
© 2013 Progress Software Corporation and/or its subsidiaries or affiliates. |