INotesSlide

Overview

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

Represents a notes slide in a presentation.

This interface provides 11 methods for working with INotesSlide objects in Java programs. Available methods include: asIBaseSlide, asIPresentationComponent, getHeaderFooterManager, getName, getNotesTextFrame, getParentSlide, getPresentation, getShapes, getSlide, getSlideId, setName. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: headerFooterManager, name, notesTextFrame, parentSlide, presentation, shapes, and 2 more.

Properties

NameTypeAccessDescription
notesTextFrameITextFrameReadReturns the text frame with notes text.
headerFooterManagerINotesSlideHeaderFooterManagerReadReturns the header/footer manager for this notes slide.
parentSlideISlideReadReturns the parent slide this notes slide is associated with.
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
getNotesTextFrame()ITextFrameReturns the text frame with notes text.
getHeaderFooterManager()INotesSlideHeaderFooterManagerReturns the header/footer manager for this notes slide.
getParentSlide()ISlideReturns the parent slide this notes slide is associated with.
asIBaseSlide()IBaseSlideAllows to get the base {@link IBaseSlide} interface.
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