|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ISlide
Represents a slide in a presentation.
Method Summary | |
---|---|
INotesSlide |
addNotesSlide()
Deprecated. |
boolean |
getHidden()
Determines whether the specified slide is hidden during a slide show. |
ILayoutSlide |
getLayoutSlide()
Returns or sets the layout slide for the current slide. |
INotesSlide |
getNotesSlide()
Deprecated. |
INotesSlideManager |
getNotesSlideManager()
Allow to access notes slide, add and remove it. |
IComment[] |
getSlideComments(ICommentAuthor author)
Returns all slide comments added by specific author. |
int |
getSlideNumber()
Returns a number of slide. |
java.awt.image.BufferedImage |
getThumbnail()
Returns a Thumbnail Image object (20% of real size). |
java.awt.image.BufferedImage |
getThumbnail(java.awt.Dimension imageSize)
Returns a Thumbnail Bitmap object with specified size. |
java.awt.image.BufferedImage |
getThumbnail(float scaleX,
float scaleY)
Returns a Thumbnail Bitmap object with custom scaling. |
java.awt.image.BufferedImage |
getThumbnail(ITiffOptions options)
Returns a Thumbnail tiff bitmap object with specified parameters. |
void |
remove()
Removes slide from presentation. |
void |
renderToGraphics(boolean withNotes,
java.awt.Graphics2D graphics)
Renders certain slide to a Graphics object. |
void |
renderToGraphics(boolean withNotes,
java.awt.Graphics2D graphics,
float scale)
Renders certain slide to a Graphics object. |
void |
renderToGraphics(boolean withNotes,
java.awt.Graphics2D graphics,
int width,
int height)
Renders certain slide to a Graphics object. |
void |
setHidden(boolean value)
Determines whether the specified slide is hidden during a slide show. |
void |
setLayoutSlide(ILayoutSlide value)
Returns or sets the layout slide for the current slide. |
void |
setSlideNumber(int value)
Returns a number of slide. |
void |
writeAsSvg(java.io.OutputStream stream)
Saves content of slide as SVG file. |
void |
writeAsSvg(java.io.OutputStream stream,
ISVGOptions svgOptions)
Saves content of slide as SVG file. |
Methods inherited from interface com.aspose.slides.IBaseSlide |
---|
findShapeByAltText, getBackground, getControls, getCustomData, getHyperlinkQueries, getName, getShapes, getSlideId, getSlideShowTransition, getTimeline, joinPortionsWithSameFormatting, setName |
Methods inherited from interface com.aspose.slides.IOverrideThemeable |
---|
getThemeManager |
Methods inherited from interface com.aspose.slides.IThemeable |
---|
createThemeEffective |
Methods inherited from interface com.aspose.slides.ISlideComponent |
---|
getSlide |
Methods inherited from interface com.aspose.slides.IPresentationComponent |
---|
getPresentation |
Method Detail |
---|
int getSlideNumber()
Returns a number of slide.
Index of slide in IPresentation.Slides
collection is always equal to SlideNumber - 1.
Read/write
void setSlideNumber(int value)
Returns a number of slide.
Index of slide in IPresentation.Slides
collection is always equal to SlideNumber - 1.
Read/write
boolean getHidden()
Determines whether the specified slide is hidden during a slide show.
Read/write boolean
.
void setHidden(boolean value)
Determines whether the specified slide is hidden during a slide show.
Read/write boolean
.
java.awt.image.BufferedImage getThumbnail(float scaleX, float scaleY)
Returns a Thumbnail Bitmap object with custom scaling.
scaleX
- The value by which to scale this Thumbnail in the x-axis direction.scaleY
- The value by which to scale this Thumbnail in the y-axis direction.
java.awt.image.BufferedImage getThumbnail()
Returns a Thumbnail Image object (20% of real size).
java.awt.image.BufferedImage getThumbnail(java.awt.Dimension imageSize)
Returns a Thumbnail Bitmap object with specified size.
imageSize
- Size of the image to create.
java.awt.image.BufferedImage getThumbnail(ITiffOptions options)
Returns a Thumbnail tiff bitmap object with specified parameters.
options
- Tiff options.
void renderToGraphics(boolean withNotes, java.awt.Graphics2D graphics, int width, int height)
Renders certain slide to a Graphics object.
withNotes
- True to render slide notes as well. False otherwise.graphics
- The object where to render to.width
- The maximum width (in pixels) that can be occupied by the rendered slide.height
- The maximum height (in pixels) that can be occupied by the rendered slide.void renderToGraphics(boolean withNotes, java.awt.Graphics2D graphics, float scale)
Renders certain slide to a Graphics object.
withNotes
- True to render slide notes as well. False otherwise.graphics
- The object where to render to.scale
- The scale for rendering the slide (1.0 is 100%).void renderToGraphics(boolean withNotes, java.awt.Graphics2D graphics)
Renders certain slide to a Graphics object.
withNotes
- True to render slide notes as well. False otherwise.graphics
- The object where to render to.ILayoutSlide getLayoutSlide()
Returns or sets the layout slide for the current slide.
Read/write ILayoutSlide
.
void setLayoutSlide(ILayoutSlide value)
Returns or sets the layout slide for the current slide.
Read/write ILayoutSlide
.
@Deprecated INotesSlide getNotesSlide()
Returns the notes slide for the current slide. Returns null if slide doesn't have notes slide.
Read-only INotesSlide
.
@Deprecated INotesSlide addNotesSlide()
Returns the notes slide for the current slide, creating one if there isn't.
INotesSlide
for this slide.INotesSlideManager getNotesSlideManager()
Allow to access notes slide, add and remove it.
Read-only
IComment[] getSlideComments(ICommentAuthor author)
Returns all slide comments added by specific author.
author
- Author of comments to find or null to return all comments.
IComment
.void writeAsSvg(java.io.OutputStream stream)
Saves content of slide as SVG file.
stream
- Target streamvoid writeAsSvg(java.io.OutputStream stream, ISVGOptions svgOptions)
Saves content of slide as SVG file.
stream
- Target streamsvgOptions
- SVG generation optionsvoid remove()
Removes slide from presentation.
PptxEditException
- Thrown if slide is already removed from presentation.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |