Packageflashx.textLayout.formats
Interfacepublic interface ITabStopFormat
Implementors TabStopFormat

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10, AIR 1.5

This interface provides read access to tab stop-related properties.



Public Properties
 PropertyDefined By
  alignment : *
[read-only] The tab alignment for this tab stop.
ITabStopFormat
  decimalAlignmentToken : *
[read-only] The alignment token to be used if the alignment is DECIMAL.
ITabStopFormat
  position : *
[read-only] The position of the tab stop, in pixels, relative to the start of the line.
ITabStopFormat
Property Detail
alignmentproperty
alignment:*  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10, AIR 1.5

The tab alignment for this tab stop.

Legal values are flash.text.engine.TabAlignment.START, flash.text.engine.TabAlignment.CENTER, flash.text.engine.TabAlignment.END, flash.text.engine.TabAlignment.DECIMAL, flashx.textLayout.formats.FormatValue.INHERIT.

Default value is undefined indicating not set.

If undefined during the cascade this property will have a value of START.



Implementation
    public function get alignment():*

See also

decimalAlignmentTokenproperty 
decimalAlignmentToken:*  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10, AIR 1.5

The alignment token to be used if the alignment is DECIMAL.

Default value is undefined indicating not set.

If undefined during the cascade this property will have a value of null.



Implementation
    public function get decimalAlignmentToken():*
positionproperty 
position:*  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10, AIR 1.5

The position of the tab stop, in pixels, relative to the start of the line.

Legal values are numbers from 0 to 10000 and flashx.textLayout.formats.FormatValue.INHERIT.

Default value is undefined indicating not set.

If undefined during the cascade this property will have a value of 0.



Implementation
    public function get position():*

See also