ISlide

All Implemented Interfaces: com.aspose.slides.IBaseSlide, com.aspose.slides.IOverrideThemeable

public interface ISlide extends IBaseSlide, IOverrideThemeable

Represents a slide in a presentation.

Methods

MethodDescription
getHeaderFooterManager()Returns HeaderFooter manager of the slide.
getSlideNumber()Returns a number of slide.
setSlideNumber(int value)Returns a number of slide.
getHidden()Determines whether the specified slide is hidden during a slide show.
setHidden(boolean value)Determines whether the specified slide is hidden during a slide show.
getThumbnail(float scaleX, float scaleY)Returns a Thumbnail Bitmap object with custom scaling.
getThumbnail()Returns a Thumbnail Image object (20% of real size).
getThumbnail(Size imageSize)Returns a Thumbnail Bitmap object with specified size.
getThumbnail(ITiffOptions options)Returns a Thumbnail tiff bitmap object with specified parameters.
getThumbnail(INotesCommentsLayoutingOptions notesCommentsLayouting)Returns a Thumbnail android.graphics.Bitmap object.
getThumbnail(INotesCommentsLayoutingOptions notesCommentsLayouting, float scaleX, float scaleY)Returns a Thumbnail android.graphics.Bitmap object with custom scaling.
getThumbnail(INotesCommentsLayoutingOptions options, Size imageSize)Returns a Thumbnail android.graphics.Bitmap object with specified size.
getThumbnail(IRenderingOptions options)Returns a Thumbnail android.graphics.Bitmap object.
getThumbnail(IRenderingOptions options, float scaleX, float scaleY)Returns a Thumbnail android.graphics.Bitmap object with custom scaling.
getThumbnail(IRenderingOptions options, Size imageSize)Returns a Thumbnail android.graphics.Bitmap object with specified size.
renderToGraphics(INotesCommentsLayoutingOptions notesCommentsLayouting, Canvas graphics, int width, int height)Renders certain slide to a Graphics object.
renderToGraphics(INotesCommentsLayoutingOptions notesCommentsLayouting, Canvas graphics, float scale)Renders certain slide to a Graphics object.
renderToGraphics(INotesCommentsLayoutingOptions notesCommentsLayouting, Canvas graphics)Renders certain slide to a Graphics object.
renderToGraphics(IRenderingOptions options, Canvas graphics)Renders certain slide to a Graphics object.
renderToGraphics(IRenderingOptions options, Canvas graphics, float scaleX, float scaleY)Renders certain slide to a Graphics object with custom scaling.
renderToGraphics(IRenderingOptions options, Canvas graphics, Size renderingSize)Renders certain slide to a Graphics object using specified size.
getLayoutSlide()Returns or sets the layout slide for the current slide.
setLayoutSlide(ILayoutSlide value)Returns or sets the layout slide for the current slide.
getNotesSlideManager()Allow to access notes slide, add and remove it.
getSlideComments(ICommentAuthor author)Returns all slide comments added by specific author.
writeAsSvg(OutputStream stream)Saves content of slide as SVG file.
writeAsSvg(OutputStream stream, ISVGOptions svgOptions)Saves content of slide as SVG file.
remove()Removes slide from presentation.
reset()Resets position, size and formatting of every shape that has a prototype on LayoutSlide.

getHeaderFooterManager()

public abstract ISlideHeaderFooterManager getHeaderFooterManager()

Returns HeaderFooter manager of the slide. Read-only ISlideHeaderFooterManager.

Returns: ISlideHeaderFooterManager

getSlideNumber()

public abstract int getSlideNumber()

Returns a number of slide. Index of slide in (IPresentation.getSlides) collection is always equal to SlideNumber - 1. Read/write int.

Returns: int

setSlideNumber(int value)

public abstract void setSlideNumber(int value)

Returns a number of slide. Index of slide in (IPresentation.getSlides) collection is always equal to SlideNumber - 1. Read/write int.

Parameters:

ParameterTypeDescription
valueint

getHidden()

public abstract boolean getHidden()

Determines whether the specified slide is hidden during a slide show. Read/write boolean.

Returns: boolean

setHidden(boolean value)

public abstract void setHidden(boolean value)

Determines whether the specified slide is hidden during a slide show. Read/write boolean.

Parameters:

ParameterTypeDescription
valueboolean

getThumbnail(float scaleX, float scaleY)

public abstract Bitmap getThumbnail(float scaleX, float scaleY)

Returns a Thumbnail Bitmap object with custom scaling.

Parameters:

ParameterTypeDescription
scaleXfloatThe value by which to scale this Thumbnail in the x-axis direction.
scaleYfloatThe value by which to scale this Thumbnail in the y-axis direction.

Returns: android.graphics.Bitmap - Bitmap object android.graphics.Bitmap

getThumbnail()

public abstract Bitmap getThumbnail()

Returns a Thumbnail Image object (20% of real size).

Returns: android.graphics.Bitmap - Bitmap object android.graphics.Bitmap

getThumbnail(Size imageSize)

public abstract Bitmap getThumbnail(Size imageSize)

Returns a Thumbnail Bitmap object with specified size.

Parameters:

ParameterTypeDescription
imageSizeSizeSize of the image to create.

Returns: android.graphics.Bitmap - Bitmap object.

getThumbnail(ITiffOptions options)

public abstract Bitmap getThumbnail(ITiffOptions options)

Returns a Thumbnail tiff bitmap object with specified parameters.

Parameters:

ParameterTypeDescription
optionsITiffOptionsTiff options.

Returns: android.graphics.Bitmap - Bitmap object.

getThumbnail(INotesCommentsLayoutingOptions notesCommentsLayouting)

public abstract Bitmap getThumbnail(INotesCommentsLayoutingOptions notesCommentsLayouting)

Returns a Thumbnail android.graphics.Bitmap object.

Parameters:

ParameterTypeDescription
notesCommentsLayoutingINotesCommentsLayoutingOptionsOptions for notes and comments layouting.

Returns: android.graphics.Bitmap - android.graphics.Bitmap objects.

getThumbnail(INotesCommentsLayoutingOptions notesCommentsLayouting, float scaleX, float scaleY)

public abstract Bitmap getThumbnail(INotesCommentsLayoutingOptions notesCommentsLayouting, float scaleX, float scaleY)

Returns a Thumbnail android.graphics.Bitmap object with custom scaling.

Parameters:

ParameterTypeDescription
notesCommentsLayoutingINotesCommentsLayoutingOptionsOptions for notes and comments layouting.
scaleXfloatThe value by which to scale this Thumbnail in the x-axis direction.
scaleYfloatThe value by which to scale this Thumbnail in the y-axis direction.

Returns: android.graphics.Bitmap - android.graphics.Bitmap objects.

getThumbnail(INotesCommentsLayoutingOptions options, Size imageSize)

public abstract Bitmap getThumbnail(INotesCommentsLayoutingOptions options, Size imageSize)

Returns a Thumbnail android.graphics.Bitmap object with specified size.

Parameters:

ParameterTypeDescription
optionsINotesCommentsLayoutingOptionsOptions for notes and comments layouting.
imageSizeSizeSize of the image to create.

Returns: android.graphics.Bitmap - android.graphics.Bitmap objects.

getThumbnail(IRenderingOptions options)

public abstract Bitmap getThumbnail(IRenderingOptions options)

Returns a Thumbnail android.graphics.Bitmap object.

Parameters:

ParameterTypeDescription
optionsIRenderingOptionsRendering options.

Returns: android.graphics.Bitmap - android.graphics.Bitmap objects.

getThumbnail(IRenderingOptions options, float scaleX, float scaleY)

public abstract Bitmap getThumbnail(IRenderingOptions options, float scaleX, float scaleY)

Returns a Thumbnail android.graphics.Bitmap object with custom scaling.

Parameters:

ParameterTypeDescription
optionsIRenderingOptionsRendering options.
scaleXfloatThe value by which to scale this Thumbnail in the x-axis direction.
scaleYfloatThe value by which to scale this Thumbnail in the y-axis direction.

Returns: android.graphics.Bitmap - android.graphics.Bitmap objects.

getThumbnail(IRenderingOptions options, Size imageSize)

public abstract Bitmap getThumbnail(IRenderingOptions options, Size imageSize)

Returns a Thumbnail android.graphics.Bitmap object with specified size.

Parameters:

ParameterTypeDescription
optionsIRenderingOptionsRendering options.
imageSizeSizeSize of the image to create.

Returns: android.graphics.Bitmap - android.graphics.Bitmap objects.

renderToGraphics(INotesCommentsLayoutingOptions notesCommentsLayouting, Canvas graphics, int width, int height)

public abstract void renderToGraphics(INotesCommentsLayoutingOptions notesCommentsLayouting, Canvas graphics, int width, int height)

Renders certain slide to a Graphics object.

Parameters:

ParameterTypeDescription
notesCommentsLayoutingINotesCommentsLayoutingOptionsOptions for notes and comments layouting.
graphicsandroid.graphics.CanvasThe object where to render to.
widthintThe maximum width (in pixels) that can be occupied by the rendered slide.
heightintThe maximum height (in pixels) that can be occupied by the rendered slide.

renderToGraphics(INotesCommentsLayoutingOptions notesCommentsLayouting, Canvas graphics, float scale)

public abstract void renderToGraphics(INotesCommentsLayoutingOptions notesCommentsLayouting, Canvas graphics, float scale)

Renders certain slide to a Graphics object.

Parameters:

ParameterTypeDescription
notesCommentsLayoutingINotesCommentsLayoutingOptionsOptions for notes and comments layouting.
graphicsandroid.graphics.CanvasThe object where to render to.
scalefloatThe scale for rendering the slide (1.0 is 100%).

renderToGraphics(INotesCommentsLayoutingOptions notesCommentsLayouting, Canvas graphics)

public abstract void renderToGraphics(INotesCommentsLayoutingOptions notesCommentsLayouting, Canvas graphics)

Renders certain slide to a Graphics object.

Parameters:

ParameterTypeDescription
notesCommentsLayoutingINotesCommentsLayoutingOptionsOptions for notes and comments layouting.
graphicsandroid.graphics.CanvasThe object where to render to.

renderToGraphics(IRenderingOptions options, Canvas graphics)

public abstract void renderToGraphics(IRenderingOptions options, Canvas graphics)

Renders certain slide to a Graphics object.

Parameters:

ParameterTypeDescription
optionsIRenderingOptionsRendering options.
graphicsandroid.graphics.CanvasThe object where to render to.

renderToGraphics(IRenderingOptions options, Canvas graphics, float scaleX, float scaleY)

public abstract void renderToGraphics(IRenderingOptions options, Canvas graphics, float scaleX, float scaleY)

Renders certain slide to a Graphics object with custom scaling.

Parameters:

ParameterTypeDescription
optionsIRenderingOptionsRendering options.
graphicsandroid.graphics.CanvasThe object where to render to.
scaleXfloatThe scale for rendering the slide (1.0 is 100%) in the x-axis direction.
scaleYfloatThe scale for rendering the slide (1.0 is 100%) in the y-axis direction.

renderToGraphics(IRenderingOptions options, Canvas graphics, Size renderingSize)

public abstract void renderToGraphics(IRenderingOptions options, Canvas graphics, Size renderingSize)

Renders certain slide to a Graphics object using specified size.

Parameters:

ParameterTypeDescription
optionsIRenderingOptionsRendering options.
graphicsandroid.graphics.CanvasThe object where to render to.
renderingSizeSizeThe maximum dimensions (in pixels) that can be occupied by the rendered slide.

getLayoutSlide()

public abstract ILayoutSlide getLayoutSlide()

Returns or sets the layout slide for the current slide. Read/write ILayoutSlide.

Returns: ILayoutSlide

setLayoutSlide(ILayoutSlide value)

public abstract void setLayoutSlide(ILayoutSlide value)

Returns or sets the layout slide for the current slide. Read/write ILayoutSlide.

Parameters:

ParameterTypeDescription
valueILayoutSlide

getNotesSlideManager()

public abstract INotesSlideManager getNotesSlideManager()

Allow to access notes slide, add and remove it. Read-only INotesSlideManager.

Returns: INotesSlideManager

getSlideComments(ICommentAuthor author)

public abstract IComment[] getSlideComments(ICommentAuthor author)

Returns all slide comments added by specific author.

Parameters:

ParameterTypeDescription
authorICommentAuthorAuthor of comments to find or null to return all comments.

Returns: com.aspose.slides.IComment[] - Array of IComment.

writeAsSvg(OutputStream stream)

public abstract void writeAsSvg(OutputStream stream)

Saves content of slide as SVG file.

Parameters:

ParameterTypeDescription
streamjava.io.OutputStreamTarget stream

writeAsSvg(OutputStream stream, ISVGOptions svgOptions)

public abstract void writeAsSvg(OutputStream stream, ISVGOptions svgOptions)

Saves content of slide as SVG file.

Parameters:

ParameterTypeDescription
streamjava.io.OutputStreamTarget stream
svgOptionsISVGOptionsSVG generation options

remove()

public abstract void remove()

Removes slide from presentation.

reset()

public abstract void reset()

Resets position, size and formatting of every shape that has a prototype on LayoutSlide.