PpTabStopType Enumeration

Represents a single tab stop. The TabStop object is a member of the TabStops collection. The TabStops collection represents all the tab stops on one ruler.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Public Enumeration PpTabStopType
'Usage
Dim instance As PpTabStopType
public enum PpTabStopType

Members

Member name Description
ppTabStopMixed
ppTabStopLeft
ppTabStopCenter
ppTabStopRight
ppTabStopDecimal

Examples

Use TabStops(index), where index is the tab stop index number, to return a single TabStop object. The following example clears tab stop one for the text in shape two on slide one in the active presentation.

ActivePresentation.Slides(1).Shapes(2).TextFrame _

    .Ruler.TabStops(1).Clear

See Also

Reference

Microsoft.Office.Interop.PowerPoint Namespace