TextFrame2.Ruler Property (PowerPoint)
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.
Return Value
Ruler2
Example
This example 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.
Public Sub Ruler_Example()
Dim pptSlide As Slide
Set pptSlide = ActivePresentation.Slides(1)
pptSlide.Shapes(1).TextFrame2.Ruler.TabStops.Add ppTabStopLeft, 144
End Sub