IMasterLayoutSlideCollection

IMasterLayoutSlideCollection interface

Represents a collections of all layout slides of defined master slide. Extends ILayoutSlideCollection interface with methods for adding/inserting/removing/cloning layout slides in context of the individual collections of master’s layout slides.

public interface IMasterLayoutSlideCollection : ILayoutSlideCollection

Properties

NameDescription
AsILayoutSlideCollection { get; }Returns ILayoutSlideCollection interface. Read-only ILayoutSlideCollection.

Methods

NameDescription
Add(SlideLayoutType, string)Adds a new layout slide to the end of the collection.
AddClone(ILayoutSlide)Adds a copy of a specified layout slide to the end of the collection.
Insert(int, SlideLayoutType, string)Inserts a new layout slide to specified position of the collection.
InsertClone(int, ILayoutSlide)Inserts a copy of a specified layout slide to specified position of the collection.
RemoveAt(int)Removes the element at the specified index of the collection.
Reorder(int, ILayoutSlide)Moves layout slide from the collection to the specified position.

See Also