ISlide

Overview

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

Represents a slide in a presentation.

This interface provides 16 methods for working with ISlide objects in Java programs. Available methods include: asIPresentationComponent, getLayoutSlide, getName, getNotesSlideManager, getPresentation, getShapes, getSlide, getSlideComments, getSlideId, getSlideNumber, isHidden, remove, and 4 additional methods. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: hidden, layoutSlide, name, notesSlideManager, presentation, shapes, and 3 more.

Properties

NameTypeAccessDescription
slideNumberintReadReturns the 1-based slide number.
hiddenbooleanReadDetermines whether the specified slide is hidden during a slide show.
layoutSlideILayoutSlideReadReturns the layout slide for the current slide.
notesSlideManagerINotesSlideManagerReadReturns the notes slide manager for this slide.
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
getSlideNumber()intReturns the 1-based slide number.
setSlideNumber(value: int)Sets the 1-based slide number.
isHidden()booleanDetermines whether the specified slide is hidden during a slide show.
setHidden(value: boolean)Sets whether the specified slide is hidden during a slide show.
getLayoutSlide()ILayoutSlideReturns the layout slide for the current slide.
setLayoutSlide(value: ILayoutSlide)Sets the layout slide for the current slide.
getNotesSlideManager()INotesSlideManagerReturns the notes slide manager for this slide.
getSlideComments(author: ICommentAuthor)IComment[]Returns comments on this slide, optionally filtered by author.
remove()Removes this slide from the presentation.
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