IBaseSlide

IBaseSlide interface

Represents common data for all slide types.

public interface IBaseSlide : IThemeable

Properties

NameDescription
AsIThemeable { get; }Allows to get base IThemeable interface. Read-only IThemeable.
Background { get; }Returns slide’s background. Read-only IBackground.
Controls { get; }Returns the collection of ActiveX controls on a slide. Read-only IControlCollection.
CustomData { get; }Returns the slide’s custom data. Read-only ICustomData.
HyperlinkQueries { get; }Provides easy access to contained hyperlinks. Read-only IHyperlinkQueries.
Name { get; set; }Returns or sets the name of a slide. Read/write String.
Shapes { get; }Returns the shapes of a slide. Read-only IShapeCollection.
ShowMasterShapes { get; set; }Specifies if shapes on the master slide should be shown on slides or not. For master slide itself this property always returns false. Read/write Boolean.
SlideId { get; }Returns the ID of a slide. Read-only UInt32.
SlideShowTransition { get; }Returns the TransitionEx object which contains information about how the specified slide advances during a slide show. Read-only ISlideShowTransition.
Timeline { get; }Returns animation timeline object. Read-only IAnimationTimeLine.

Methods

NameDescription
Equals(IBaseSlide)Determines whether the two IBaseSlide instances are equal. Returning value is calculated based on slide’s structure and static content. Two slides are equal if all shapes, styles, texts, animation and other settings. etc. are equal. The comparison doesn’t take into account unique identifier values, e.g. SlideId and dynamic content, e.g. current date value in Date Placeholder.
FindShapeByAltText(string)Finds first occurrence of a shape with the specified alternative text.
JoinPortionsWithSameFormatting()Joins runs with same formatting in all paragraphs in all acceptable shapes.

See Also