TextFrame2.Ruler property (Office)
Returns a Ruler2 object that represents the ruler for the specified text. Read-only.
Syntax
expression.Ruler
expression An expression that returns a TextFrame2 object.
Example
The following code shows how to set a left-aligned tab stop at 2 inches (144 points) for the text in shape one on slide one in the active presentation.
Dim pptSlide As Slide
Set pptSlide = ActivePresentation.Slides(1)
pptSlide.Shapes(1).TextFrame2.Ruler.TabStops.Add ppTabStopLeft, 144
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.