LeftMargin Property
Applies To
RulerLevel object.
Description
Returns or sets the left indent for the specified outline level, in points. Read/write Single.
Remarks
If a paragraph begins with a bullet, the bullet position is determined by the FirstMargin property, and the position of the first text character in the paragraph is determined by the LeftMargin property.
See Also
FirstMargin property.
Example
This example sets the first-line indent and hanging indent for outline level one in body text on the slide master for the active presentation.
With Application.ActivePresentation.SlideMaster.TextStyles(ppBodyStyle)
With .Ruler.Levels(1)
.FirstMargin = 9
.LeftMargin = 54
End With
End With