MasterSlideCollection

MasterSlideCollection class

Represents a collection of master slides.

public sealed class MasterSlideCollection : DomObject<Presentation>, IMasterSlideCollection

Properties

NameDescription
Count { get; }Gets the number of elements actually contained in the collection. Read-only Int32.
IsSynchronized { get; }Returns a value indicating whether access to the collection is synchronized (thread-safe). Read-only Boolean.
Item { get; }Gets the element at the specified index. Read-only MasterSlide.
SyncRoot { get; }Returns a synchronization root. Read-only Object.

Methods

NameDescription
AddClone(IMasterSlide)Adds a copy of a specified master slide to the end of the collection. Linked layout slides will be copied too.
CopyTo(Array, int)Copies all elements from the collection to the specified array.
GetEnumerator()Returns an enumerator that iterates through the collection.
InsertClone(int, IMasterSlide)Inserts a copy of a specified master slide to specified position of the collection. Linked layout slides will be copied too.
Remove(IMasterSlide)Removes the first occurrence of a specific object from the collection.
RemoveAt(int)Removes the element at the specified index of the collection.
RemoveUnused(bool)Removes unused master slides.

See Also