BaseSlide

Overview

BaseSlide is a class in Aspose.Slides FOSS for Java. Inherits from: IBaseSlide.

Represents common data for all slide types.

This class provides 9 methods for working with BaseSlide objects in Java programs. Available methods include: BaseSlide, asIPresentationComponent, 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: name, presentation, shapes, slide, slideId.

Properties

NameTypeAccessDescription
nameStringReadGets the name.
slideIdintReadGets the slide id.
shapesIShapeCollectionReadGets the shapes.
slideIBaseSlideReadGets the slide.
presentationIPresentationReadGets the presentation.

Methods

SignatureDescription
BaseSlide()Creates a BaseSlide with default values.
BaseSlide(name: String, slideId: int)Creates a BaseSlide with the given name and ID.
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()IPresentationComponentReturns this slide as an IPresentationComponent
getPresentation()IPresentationReturns the presentation.

See Also