tabAlign |
Type | property |
Dictionary | LCS |
Library | LiveCode Script |
Syntax | set the tabAlign [of line lineNumber] of field to tabAlignList
|
Associations | field |
Summary | Specifies the alignment of tab stops in a field.
|
Introduced | 7.0 |
OS | mac, windows, linux, ios, android |
Platforms | desktop, 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 | Name | Type | Description |
---|
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
|
|
Related | Property: 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.
|
Tags | ui |