tabAlign

Typeproperty
DictionaryLCS
LibraryLiveCode Script
Syntax
set the tabAlign [of line lineNumber] of field to tabAlignList
Associationsfield
Summary

Specifies the alignment of tab stops in a field.

Introduced7.0
OSmac, windows, linux, ios, android
Platformsdesktop, server, mobile
Example
set the tabAlign of field 1 to "left,left,right,center"
put "A" \
      & tab & "B" & tab & "C" & cr & "left" & tab & "center" & tab & "right" into field 1
set the tabStops of field 1 to "100"
set the tabAlign of field 1 to "left,center,right"
Values
NameTypeDescription
Value

The tabAlign of a field is a return delimited list of alignments, separated by commas. The alignments can be one of "left", "right" and "center" .By default, the tabAlign property of newly created fields is set to empty

RelatedProperty: textAlign, formattedWidth, autoTab, formattedText, width, listStyle, tabStops, listBehavior, hScrollbar, textSize
Message: tabKey
Description

Use the tabAlign property to set the alignment of tab separated text.

Tagsui