IMasterSlideCollection

IMasterSlideCollection

Overview

IMasterSlideCollection is a interface in Aspose.Slides FOSS for Java.

Represents a collection of master slides.

This interface provides 5 methods for working with IMasterSlideCollection objects in Java programs. Available methods include: addClone, asICollection, asIEnumerable, get, size. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package.

Methods

SignatureDescription
size()intReturns the number of master slides in the collection.
get(index: int)IMasterSlideReturns the master slide at the given index.
asICollection()List<IMasterSlide>Returns this collection as an unmodifiable {@link List}.
asIEnumerable()Iterable<IMasterSlide>Returns this collection as an {@link Iterable}.
addClone(sourceMaster: IMasterSlide)IMasterSlideAdds a clone of the specified master slide to the collection.

See Also