Placeholders Interface

A collection of all the Shape objects that represent placeholders on the specified slide.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
<GuidAttribute("91493476-5A91-11CF-8700-00AA0060263B")> _
Public Interface Placeholders _
    Inherits Collection
'Usage
Dim instance As Placeholders
[GuidAttribute("91493476-5A91-11CF-8700-00AA0060263B")]
public interface Placeholders : Collection

Remarks

Each Shape object in the Placeholders collection represents a placeholder for text, a chart, a table, an organizational chart, or some other type of object. If the slide has a title, the title is the first placeholder in the collection.

You can delete individual placeholders by using the Delete(Int32) method, and you can restore deleted placeholders by using the AddPlaceholder(PpPlaceholderType, Single, Single, Single, Single) method, but you cannot add any more placeholders to a slide than it had when it was created. To change the number of placeholders on a given slide, set the Layout property.

Examples

Use the _Index(Int32) property to return the Placeholders collection. Use Placeholders(index), where index is the placeholder index number, to return a Shape object that represents a single placeholder. Note that for any slide that has a title, Shapes.Title is equivalent to Shapes.Placeholders(1).The following example adds a new slide with a Bulleted List slide layout to the beginning of the presentation, sets the text for the title, and then adds two paragraphs to the text placeholder.

Set sObj = ActivePresentation.Slides.Add(1, ppLayoutText).Shapes

sObj.Title.TextFrame.TextRange.Text = "This is the title text"

sObj.Placeholders(2).TextFrame.TextRange.Text = _

    "Item 1" & Chr(13) & "Item 2"

See Also

Reference

Placeholders Members

Microsoft.Office.Interop.PowerPoint Namespace