Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 1.54 KB

PowerPoint.ParagraphFormat.LineRuleWithin.md

File metadata and controls

77 lines (42 loc) · 1.54 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ParagraphFormat.LineRuleWithin property (PowerPoint)
vbapp10.chm576007
vbapp10.chm576007
PowerPoint.ParagraphFormat.LineRuleWithin
0bf91b11-fe28-eec8-75f8-8fccbed19f5c
06/08/2017
medium

ParagraphFormat.LineRuleWithin property (PowerPoint)

Determines whether line spacing between base lines is set to a specific number of points or lines. Read/write.

Syntax

expression. LineRuleWithin

expression A variable that represents a ParagraphFormat object.

Return value

MsoTriState

Remarks

The value of the LineRuleWithin property can be one of these MsoTriState constants.

Constant Description
msoFalse Line spacing between base lines is set to a specific number of points.
msoTrue Line spacing between base lines is set to a specific number of lines.

Example

This example displays a message box that shows the setting for line spacing for text in shape two on slide one in the active presentation.

With Application.ActivePresentation.Slides(1).Shapes(2).TextFrame

    With .TextRange.ParagraphFormat

        ls = .SpaceWithin

        If .LineRuleWithin Then

            lsUnits = " lines"

        Else

            lsUnits = " points"

        End If

    End With

End With

MsgBox "Current line spacing: " & ls & lsUnits

See also

ParagraphFormat Object

[!includeSupport and feedback]