TabStops.Add

Add()

Initializes a new instance of the TabStop class and add it to the TabStops collection.

public TabStop Add()

Return Value

The new TabStop object.

See Also


Add(float)

Initializes a new instance of the TabStop class with specified position and add it to the TabStops collection.

public TabStop Add(float position)
ParameterTypeDescription
positionSingleThe position of the tab stop.

Return Value

The new TabStop object.

See Also


Add(TabStop)

Add instance of the TabStop class to the TabStops collection.

public void Add(TabStop tabStop)
ParameterTypeDescription
tabStopTabStopThe TabStop object.

See Also


Add(float, TabLeaderType)

Initializes a new instance of the TabStop class with specified position and leader type and add it to the TabStops collection.

public TabStop Add(float position, TabLeaderType leaderType)
ParameterTypeDescription
positionSingleThe position of the tab stop.
leaderTypeTabLeaderTypeThe leader type of the tab stop.

Return Value

The new TabStop object.

See Also