ISlide

Overview

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

Represents a slide in a presentation.

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.

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.

See Also