TabStops Collection Object
Description
A collection of all the TabStop objects on one ruler.
Using the TabStops Collection
Use the TabStops property to return the TabStops collection. The following example clears all the tab stops for the text in shape two on slide one in the active presentation.
With ActivePresentation.Slides(1).Shapes(2).TextFrame.Ruler.TabStops
For t = .Count To 1 Step -1
.Item(t).Clear
Next
End With
Use the Add method to create a tab stop and add it to the TabStops collection. The following example adds a tab stop to the body-text style on the slide master for the active presentation. The new tab stop will be positioned 2 inches (144 points) from the left edge of the ruler and will be left aligned.
ActivePresentation.SlideMaster.TextStyles(ppBodyStyle).Ruler _
.TabStops.Add ppTabStopLeft, 144
Properties
Application property, Count property, DefaultSpacing property, Parent property.
Methods
Add method (TabStops collection object), Item method (multiple collections).