To set the justification of the text in each field, use a justification specifier. You can use three justification characters, L (Left), R (Right), and N (None) - for example:
Format |
{Tag,8,L} {Name,32,R} |
The justification specifier is optional - if it is omitted, the field is left justified. If you use a justification specifier, you need to also use the width specifier.
To display field text in columns, use the tab character (^t) - for example:
Format |
{Tag,8}^t{Name,32}^t{Desc,32} {Time,8,R} |