Notes
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Returns a ParagraphFormat object that represents paragraph formatting for the specified text. Read-only.
Syntax
expression .ParagraphFormat
expression An expression that returns a TextRange2 object.
Return Value
ParagraphFormat
Example
This example sets the line spacing before, within, and after each paragraph in shape two on slide one in the active PowerPoint presentation.
With Application.ActivePresentation.Slides(2).Shapes(2)
With .TextFrame.TextRange2.ParagraphFormat
.LineRuleWithin = msoTrue
.SpaceWithin = 1.4
.LineRuleBefore = msoTrue
.SpaceBefore = 0.25
.LineRuleAfter = msoTrue
.SpaceAfter = 0.75
End With
End With