PowerPoint) (Shapes.Placeholders 屬性
會傳回 Placeholders 集合,代表投影片上所有版面配置區的集合。 唯讀。
語法
expression。 Placeholders
expression 代表 Shapes 物件的變數。
傳回值
預留位置
註解
Placeholders 集合中的每個版面配置區可以包含文字、 圖表、 表格、 組織圖或其他物件。
範例
本範例會將投影片新增至作用中的簡報,然後將文字新增至標題 (這是投影片上的第一個版面配置區) 與副標題。
Set myDocument = ActivePresentation.Slides(1)
With ActivePresentation.Slides _
.Add(1, ppLayoutTitle).Shapes.Placeholders
.Item(1).TextFrame.TextRange.Text = "This is the title text"
.Item(2).TextFrame.TextRange.Text = "This is subtitle text"
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。