Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Returns a ParagraphFormat object that represents paragraph formatting for the specified text. Read-only.
Syntax
expression. ParagraphFormat
expression A variable that represents a TextRange 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 presentation.
With Application.ActivePresentation.Slides(2).Shapes(2)
With .TextFrame.TextRange.ParagraphFormat
.LineRuleWithin = msoTrue
.SpaceWithin = 1.4
.LineRuleBefore = msoTrue
.SpaceBefore = 0.25
.LineRuleAfter = msoTrue
.SpaceAfter = 0.75
End With
End With
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.