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
| Name | Type | Access | Description |
|---|---|---|---|
slideNumber | int | Read | Returns the 1-based slide number. |
hidden | boolean | Read | Determines whether the specified slide is hidden during a slide show. |
layoutSlide | ILayoutSlide | Read | Returns the layout slide for the current slide. |
notesSlideManager | INotesSlideManager | Read | Returns the notes slide manager for this slide. |
name | String | Read | Returns the name of a slide. |
slideId | int | Read | Returns the ID of a slide. |
shapes | IShapeCollection | Read | Returns the shapes of a slide. |
slide | IBaseSlide | Read | Returns the parent slide. |
presentation | IPresentation | Read | Returns the presentation containing this component. |
Methods
| Signature | Description |
|---|---|
getSlideNumber() → int | Returns the 1-based slide number. |
setSlideNumber(value: int) | Sets the 1-based slide number. |
isHidden() → boolean | Determines 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() → ILayoutSlide | Returns the layout slide for the current slide. |
setLayoutSlide(value: ILayoutSlide) | Sets the layout slide for the current slide. |
getNotesSlideManager() → INotesSlideManager | Returns 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() → String | Returns the name of a slide. |
setName(name: String) | Sets the name of a slide. |
getSlideId() → int | Returns the ID of a slide. |
getShapes() → IShapeCollection | Returns the shapes of a slide. |
getSlide() → IBaseSlide | Returns the parent slide. |
asIPresentationComponent() → IPresentationComponent | Returns the base {@link IPresentationComponent} interface. |
getPresentation() → IPresentation | Returns the presentation containing this component. |