BaseSlide
Overview
BaseSlide is a class in Aspose.Slides FOSS for Java.
Inherits from: IBaseSlide.
Represents common data for all slide types.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
name | String | Read | Property holds the slide’s name |
slideId | int | Read | Property holds the slide’s integer ID |
shapes | IShapeCollection | Read | Property provides access to the slide’s shape collection |
slide | IBaseSlide | Read | Property provides the underlying IBaseSlide |
presentation | IPresentation | Read | Property provides the containing IPresentation |
Methods
| Signature | Description |
|---|---|
BaseSlide() | Creates a BaseSlide with default values. |
BaseSlide(name: String, slideId: int) | Creates a BaseSlide with the given name and ID. |
getName() → String | Returns the slide’s name |
setName(name: String) | Sets the slide’s name to the given string |
getSlideId() → int | Returns the integer identifier of the slide |
getShapes() → IShapeCollection | Returns the collection of shapes on the slide |
getSlide() → IBaseSlide | Returns the underlying IBaseSlide instance |
asIPresentationComponent() → IPresentationComponent | Returns this slide as an IPresentationComponent |
getPresentation() → IPresentation | Returns the IPresentation that contains this slide |