BaseSlide

Overview

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

Represents common data for all slide types.

Properties

NameTypeAccessDescription
nameStringReadProperty holds the slide’s name
slideIdintReadProperty holds the slide’s integer ID
shapesIShapeCollectionReadProperty provides access to the slide’s shape collection
slideIBaseSlideReadProperty provides the underlying IBaseSlide
presentationIPresentationReadProperty provides the containing IPresentation

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 slide’s name
setName(name: String)Sets the slide’s name to the given string
getSlideId()intReturns the integer identifier of the slide
getShapes()IShapeCollectionReturns the collection of shapes on the slide
getSlide()IBaseSlideReturns the underlying IBaseSlide instance
asIPresentationComponent()IPresentationComponentReturns this slide as an IPresentationComponent
getPresentation()IPresentationReturns the IPresentation that contains this slide

See Also