MasterSlide

Overview

MasterSlide is a class in Aspose.Slides FOSS for Java. Inherits from: BaseSlide, IMasterSlide.

Represents a master slide in a presentation.

This class provides 13 methods for working with MasterSlide objects in Java programs. Available methods include: BaseSlide, MasterSlide, asIPresentationComponent, getLayoutSlides, getName, getPresentation, getShapes, getSlide, getSlideId, initInternal, 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
layoutSlidesILayoutSlideCollectionReadGets the layout slides.
presentationIPresentationReadGets the presentation.
nameStringReadGets the name.
slideIdintReadGets the slide id.
shapesIShapeCollectionReadGets the shapes.
slideIBaseSlideReadGets the slide.

Methods

SignatureDescription
MasterSlide(layoutSlides: ILayoutSlideCollection)Creates a MasterSlide with the given layout slides.
MasterSlide(name: String, slideId: int, layoutSlides: ILayoutSlideCollection)Creates a MasterSlide with the given name, ID, and layout slides.
MasterSlide()Creates a MasterSlide with no layout slides.
initInternal(presentation: IPresentation, opcPackage: OpcPackage, partName: String, masterPart: MasterSlidePart, layoutSlides: List<ILayoutSlide>)Internal initialization for a master slide loaded from a package.
getLayoutSlides()ILayoutSlideCollectionReturns the layout slides.
getPresentation()IPresentationReturns the presentation.
BaseSlide()Creates a BaseSlide with default values.
getName()StringReturns the name.
setName(name: String)Sets the name value.
getSlideId()intReturns the slide id.
getShapes()IShapeCollectionReturns the shapes.
getSlide()IBaseSlideReturns the slide.
asIPresentationComponent()IPresentationComponent

See Also