SpaceWithin 属性

       

以磅或行为单位返回或设置指定文本中基准行之间的距离。可读写。Single 类型。

示例

本示例将当前演示文稿第二张幻灯片第二个形状中的文本的行间距设为 21 磅。

With Application.ActivePresentation.Slides(2).Shapes(2)
    With .TextFrame.TextRange.ParagraphFormat
        .LineRuleWithin = False
        .SpaceWithin = 21
    End With
End With