PowerPoint) (PlaceholderFormat 物件
含有特別套用到版面配置區的屬性,如版面配置區類型。
範例
使用PlaceholderFormat屬性可傳回 PlaceholderFormat 物件。 下列範例會將文字新增至版面配置區一個使用中簡報的投影片如果該版面配置區存在且水平標題版面配置區。
With ActivePresentation.Slides(1).Shapes.Placeholders
If .Count > 0 Then
With .Item(1)
Select Case .PlaceholderFormat.Type
Case ppPlaceholderTitle
.TextFrame.TextRange = "Title Text"
Case ppPlaceholderCenterTitle
.TextFrame.TextRange = "Centered Title Text"
Case Else
MsgBox "There's no horizontal " _
"title on this slide"
End Select
End With
End If
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。