IMasterSlide

Overview

IMasterSlide is a interface in Aspose.Slides FOSS for Java. Inherits from: IBaseSlide.

Represents a master slide in a presentation.

This interface provides 8 methods for working with IMasterSlide objects in Java programs. Available methods include: asIPresentationComponent, getLayoutSlides, getName, getPresentation, getShapes, getSlide, getSlideId, setName. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: layoutSlides, name, presentation, shapes, slide, slideId.

Properties

NameTypeAccessDescription
layoutSlidesILayoutSlideCollectionReadReturns the collection of layout slides belonging to this master.
nameStringReadReturns the name of a slide.
slideIdintReadReturns the ID of a slide.
shapesIShapeCollectionReadReturns the shapes of a slide.
slideIBaseSlideReadReturns the parent slide.
presentationIPresentationReadReturns the presentation containing this component.

Methods

SignatureDescription
getLayoutSlides()ILayoutSlideCollectionReturns the collection of layout slides belonging to this master.
getName()StringReturns the name of a slide.
setName(name: String)Sets the name of a slide.
getSlideId()intReturns the ID of a slide.
getShapes()IShapeCollectionReturns the shapes of a slide.
getSlide()IBaseSlideReturns the parent slide.
asIPresentationComponent()IPresentationComponentReturns the base {@link IPresentationComponent} interface.
getPresentation()IPresentationReturns the presentation containing this component.

See Also