ISlide

ISlide interface

Represents a slide in a presentation.

public interface ISlide : IBaseSlide, IOverrideThemeable

Properties

NameDescription
AsIBaseSlide { get; }Allows to get base IBaseSlide interface. Read-only IBaseSlide.
AsIOverrideThemeable { get; }Returns IOverrideThemeable interface. Read-only IOverrideThemeable.
HeaderFooterManager { get; }Returns HeaderFooter manager of the slide. Read-only ISlideHeaderFooterManager.
Hidden { get; set; }Determines whether the specified slide is hidden during a slide show. Read/write Boolean.
LayoutSlide { get; set; }Returns or sets the layout slide for the current slide. Read/write ILayoutSlide.
NotesSlideManager { get; }Allow to access notes slide, add and remove it. Read-only INotesSlideManager.
SlideNumber { get; set; }Returns a number of slide. Index of slide in Slides collection is always equal to SlideNumber - 1. Read/write Int32.

Methods

NameDescription
GetSlideComments(ICommentAuthor)Returns all slide comments added by specific author.
GetThumbnail()Returns a Thumbnail Image object (20% of real size).
GetThumbnail(IRenderingOptions)Returns a Thumbnail Bitmap object.
GetThumbnail(ITiffOptions)Returns a Thumbnail tiff bitmap object with specified parameters.
GetThumbnail(Size)Returns a Thumbnail Bitmap object with specified size.
GetThumbnail(float, float)Returns a Thumbnail Bitmap object with custom scaling.
GetThumbnail(IRenderingOptions, Size)Returns a Thumbnail Bitmap object with specified size.
GetThumbnail(IRenderingOptions, float, float)Returns a Thumbnail Bitmap object with custom scaling.
Remove()Removes slide from presentation.
RenderToGraphics(IRenderingOptions, Graphics)Renders certain slide to a Graphics object.
RenderToGraphics(IRenderingOptions, Graphics, Size)Renders certain slide to a Graphics object using specified size.
RenderToGraphics(IRenderingOptions, Graphics, float, float)Renders certain slide to a Graphics object with custom scaling.
Reset()Resets position, size and formatting of every shape that has a prototype on LayoutSlide.
WriteAsSvg(Stream)Saves content of slide as SVG file.
WriteAsSvg(Stream, ISVGOptions)Saves content of slide as SVG file.

See Also