Slide

Overview

Slide is a class in Aspose.Slides FOSS for Java. Inherits from: ISlide.

Represents a slide in a presentation.

This class provides 18 methods for working with Slide objects in Java programs. Available methods include: asIPresentationComponent, getIndex, getLayoutSlide, getName, getNotesSlideManager, getPresentation, getShapes, getSlide, getSlideComments, getSlideId, getSlideNumber, initInternal, and 6 additional methods. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: hidden, index, layoutSlide, name, notesSlideManager, presentation, and 4 more.

Properties

NameTypeAccessDescription
indexintReadReturns the zero-based index of this slide.
slideIBaseSlideReadGets the slide.
presentationIPresentationReadGets the presentation.
nameStringReadGets the name.
slideIdintReadGets the slide id.
shapesIShapeCollectionReadGets the shapes.
slideNumberintReadGets the slide number.
hiddenbooleanReadGets the hidden.
layoutSlideILayoutSlideReadGets the layout slide.
notesSlideManagerINotesSlideManagerReadGets the notes slide manager.

Methods

SignatureDescription
initInternal(presentation: Presentation, opcPackage: org.aspose.slides.foss.internal.opc.OpcPackage, partName: String, slideRef: SlideReference, slidePart: Object, layoutResolver: Function<String, ILayoutSlide>)Internal initialization for a slide.
getIndex()intReturns the zero-based index of this slide.
getSlide()IBaseSlideReturns the slide.
asIPresentationComponent()IPresentationComponent
getPresentation()IPresentationReturns the presentation.
getName()StringReturns the name.
setName(name: String)Sets the name value.
getSlideId()intReturns the slide id.
getShapes()IShapeCollectionReturns the shapes.
getSlideNumber()intReturns the slide number.
setSlideNumber(value: int)Sets the slide number value.
isHidden()booleanReturns true if hidden is set.
setHidden(value: boolean)Sets the hidden value.
getLayoutSlide()ILayoutSlideReturns the layout slide.
setLayoutSlide(value: ILayoutSlide)Sets the layout slide value.
getNotesSlideManager()INotesSlideManagerReturns the notes slide manager.
getSlideComments(author: ICommentAuthor)IComment[]Returns comments on the slide for the given author
remove()Deletes the slide from its presentation

See Also