TextTabStopCollection

TextTabStopCollection class

Represents the list of all tab stops.

class TextTabStopCollection;

Constructors

NameDescription
constructor()Default Constructor.

Methods

MethodDescription
get(number)Gets TextTabStop by the index.
add(TextTabAlignmentType, number)Adds a tab stop.
getCount()Gets the number of elements contained in.

constructor()

Default Constructor.

constructor();

get(number)

Gets TextTabStop by the index.

get(index: number) : TextTabStop;

Parameters:

ParameterTypeDescription
indexnumberThe index.

Returns

TextTabStop

add(TextTabAlignmentType, number)

Adds a tab stop.

add(tabAlignment: TextTabAlignmentType, tabPosition: number) : number;

Parameters:

ParameterTypeDescription
tabAlignmentTextTabAlignmentType
tabPositionnumber

getCount()

Gets the number of elements contained in.

getCount() : number;