Aspose::Pdf::Text::TabStops::Add method

TabStops::Add() method

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

System::SharedPtr<TabStop> Aspose::Pdf::Text::TabStops::Add()

ReturnValue

The new TabStop object.

See Also

TabStops::Add(float) method

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

System::SharedPtr<TabStop> Aspose::Pdf::Text::TabStops::Add(float position)
ParameterTypeDescription
positionfloatThe position of the tab stop.

ReturnValue

The new TabStop object.

See Also

TabStops::Add(float, TabLeaderType) method

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

System::SharedPtr<TabStop> Aspose::Pdf::Text::TabStops::Add(float position, TabLeaderType leaderType)
ParameterTypeDescription
positionfloatThe position of the tab stop.
leaderTypeTabLeaderTypeThe leader type of the tab stop.

ReturnValue

The new TabStop object.

See Also

TabStops::Add(System::SharedPtr<TabStop>) method

Add instance of the TabStop class to the TabStops collection.

void Aspose::Pdf::Text::TabStops::Add(System::SharedPtr<TabStop> tabStop)
ParameterTypeDescription
tabStopSystem::SharedPtr<TabStop>The TabStop object.

See Also