PowerPoint) (ParagraphFormat.LineRuleBefore 屬性
會判斷在每個段落中第一行之前的行距是設定為特定的點數或行數。 讀取/寫入。
語法
expression。 LineRuleBefore
表達 代表 ParagraphFormat 物件的 變數。
傳回值
MsoTriState
註解
LineRuleBefore 屬性的值可以是下列其中一個 MsoTriState 常數。
常數 | 描述 |
---|---|
msoFalse | 每個段落中第一行之前的行距已設定為特定的點數。 |
msoTrue | 每個段落中第一行之前的行距已設定為特定的行數。 |
範例
本範例會顯示一個訊息方塊,其中顯示作用中的簡報第一張投影片上第二個圖案中文字段落之前的空間設定。
With Application.ActivePresentation.Slides(1).Shapes(2).TextFrame
With .TextRange.ParagraphFormat
sb = .SpaceBefore
If .LineRuleBefore Then
sbUnits = " lines"
Else
sbUnits = " points"
End If
End With
End With
MsgBox "Current spacing before paragraphs: " & sb & sbUnits
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。