TabStopCollection

TabStopCollection

Overview

TabStopCollection is a class in Aspose.Words FOSS for Python. Inherits from: BaseModel.

TabStopCollection.add(position, alignment, leader) inserts a new tab stop with the specified alignment and leader character.

This class provides 5 methods for working with TabStopCollection objects in Python programs. Available methods include: add, after, before, clear, remove_by_position. All public members are accessible to any Python application after installing the Aspose.Words FOSS for Python package. Properties: tab_stops.

Properties

NameTypeAccessDescription
tab_stopslist[TabStop]ReadGets the tab stops.

Methods

SignatureDescription
clear()
add(position: float, alignment: int, leader: int)Inserts a new tab stop with the specified alignment and leader character
remove_by_position(position: float)
before(pos: float)TabStop | None
after(pos: float)TabStop | None

See Also