Slide
Contents
[
Hide
]Slide class
Represents a slide in a presentation.
class Slide : public Aspose::Slides::BaseSlide,
public Aspose::Slides::ISlide
Methods
Method | Description |
---|---|
System::SharedPtr<Theme::IThemeEffectiveData> CreateThemeEffective() override | Returns an effective theme for this slide. |
bool Equals(System::SharedPtr<IBaseSlide>) override | 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. |
virtual bool Equals(ptr) | Compares objects using C# Object.Equals semantics. |
static std::enable_if<IsSmartPtr<T1>::value&&IsSmartPtr<T2>::value, bool>::type Equals(T1 const&, T2 const&) | Compares reference type objects in C# style. |
static bool Equals(float const&, float const&) | Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. |
static bool Equals(double const&, double const&) | Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. |
virtual bool FastCast(const Details::FastRttiBase&, void **) const | For internal purposes only. |
System::SharedPtr<IShape> FindShapeByAltText(System::String) override | Finds first occurrence of a shape with the specified alternative text. |
System::SharedPtr<IBackground> get_Background() override | Returns slide’s background. Read-only IBackground. |
System::SharedPtr<IControl> get_Control(int32_t) override | Returns the ActiveX control at the specified index. |
System::SharedPtr<IControlCollection> get_Controls() override | Returns the collection of ActiveX controls on a slide. Read-only IControlCollection. |
System::SharedPtr<ICustomData> get_CustomData() override | Returns the slide’s custom data. Read-only ICustomData. |
System::SharedPtr<ISlideHeaderFooterManager> get_HeaderFooterManager() override | Returns HeaderFooter manager of the slide. Read-only ISlideHeaderFooterManager. |
bool get_Hidden() override | Determines whether the specified slide is hidden during a slide show. Read bool. |
System::SharedPtr<IHyperlinkQueries> get_HyperlinkQueries() override | Provides easy access to contained hyperlinks. Read-only IHyperlinkQueries. |
System::SharedPtr<ILayoutSlide> get_LayoutSlide() override | Returns the layout slide for the current slide. Read ILayoutSlide. |
System::String get_Name() override | Returns the name of a slide. Read System::String. |
System::SharedPtr<INotesSlideManager> get_NotesSlideManager() override | Allow to access notes slide, add and remove it. Read-only INotesSlideManager. |
System::SharedPtr<IPresentation> get_Presentation() override | Returns IPresentation interface. Read-only IPresentation. |
System::SharedPtr<IShape> get_Shape(int32_t) override | Returns the shape at the specified index. Read-only Aspose::Slides::IShape |
System::SharedPtr<IShapeCollection> get_Shapes() override | Returns the shapes of a slide. Read-only IShapeCollection. |
bool get_ShowMasterShapes() override | Specifies if shapes on the master slide should be shown on slides or not. Read bool. |
virtual System::SharedPtr<IBaseSlide> get_Slide() | Returns the base slide. Read-only IBaseSlide. |
uint32_t get_SlideId() override | Returns the ID of a slide. Read-only uint32_t. |
int32_t get_SlideNumber() override | Returns a number of slide. Index of slide in Presentation::get_Slides() collection is always equal to SlideNumber - Presentation::get(set)_FirstSlideNumber. Read int32_t. |
System::SharedPtr<ISlideShowTransition> get_SlideShowTransition() override | Returns the Transition object which contains information about how the specified slide advances during a slide show. Read-only ISlideShowTransition. |
System::SharedPtr<Theme::IOverrideThemeManager> get_ThemeManager() override | Returns the overriding theme manager. Read-only Theme::IOverrideThemeManager. |
System::SharedPtr<IAnimationTimeLine> get_Timeline() override | Returns animation timeline object. Read-only IAnimationTimeLine. |
Detail::SmartPtrCounter * GetCounter() | Gets reference counter data structure associated with the object. |
virtual int32_t GetHashCode() const | Analog of C# Object.GetHashCode() method. Enables hashing of custom objects. |
System::SharedPtr<IImage> GetImage(float, float) override | Returns a Thumbnail Image object with custom scaling. |
System::SharedPtr<IImage> GetImage() override | Returns a Thumbnail Image object (20% of real size). |
System::SharedPtr<IImage> GetImage(System::Drawing::Size) override | Returns a Thumbnail Image object with specified size. |
System::SharedPtr<IImage> GetImage(System::SharedPtr<Export::ITiffOptions>) override | Returns a Thumbnail tiff image object with specified parameters. |
System::SharedPtr<IImage> GetImage(System::SharedPtr<Export::IRenderingOptions>) override | Returns a Thumbnail Image object. |
System::SharedPtr<IImage> GetImage(System::SharedPtr<Export::IRenderingOptions>, float, float) override | Returns a Thumbnail Image object with custom scaling. |
System::SharedPtr<IImage> GetImage(System::SharedPtr<Export::IRenderingOptions>, System::Drawing::Size) override | Returns a Thumbnail Image object with specified size. |
System::ArrayPtr<System::SharedPtr<IComment>> GetSlideComments(System::SharedPtr<ICommentAuthor>) override | Returns all slide comments added by specific author. |
System::SharedPtr<System::Drawing::Bitmap> GetThumbnail(float, float) override | Returns a Thumbnail Bitmap object with custom scaling. |
System::SharedPtr<System::Drawing::Bitmap> GetThumbnail() override | Returns a Thumbnail Image object (20% of real size). |
System::SharedPtr<System::Drawing::Bitmap> GetThumbnail(System::SharedPtr<Export::IRenderingOptions>) override | Returns a Thumbnail Bitmap object. |
System::SharedPtr<System::Drawing::Bitmap> GetThumbnail(System::Drawing::Size) override | Returns a Thumbnail Bitmap object with specified size. |
System::SharedPtr<System::Drawing::Bitmap> GetThumbnail(System::SharedPtr<Export::ITiffOptions>) override | Returns a Thumbnail tiff bitmap object with specified parameters. |
System::SharedPtr<System::Drawing::Bitmap> GetThumbnail(System::SharedPtr<Export::IRenderingOptions>, float, float) override | Returns a Thumbnail Bitmap object with custom scaling. |
System::SharedPtr<System::Drawing::Bitmap> GetThumbnail(System::SharedPtr<Export::IRenderingOptions>, System::Drawing::Size) override | Returns a Thumbnail Bitmap object with specified size. |
virtual const TypeInfo& GetType() const | Gets actual type of object. Analog of C# System.Object.GetType() call. |
virtual bool Is(const TypeInfo&) const | Check if object represents an instance of type described by targetType. Analog of C# ‘is’ operator. |
void JoinPortionsWithSameFormatting() override | Joins runs with same formatting in all paragraphs in all acceptable shapes. |
virtual void JoinPortionsWithSameFormatting(System::SharedPtr<IShapeCollection>) | Joins runs with same formatting in all paragraphs in all acceptable shapes. |
void Lock() | Implements C# lock() statement locking. Call directly or use LockContext sentry object. |
virtual ptr MemberwiseClone() const | Analog of C# Object.MemberwiseClone() method. Enables cloning custom types. |
Object() | Creates object. Initializes all internal data structures. |
Object(Object const&) | Copy constructor. Doesn’t copy anything, really, just initializes new object and enables copy constructing subclasses. |
Object& operator=(Object const&) | Assignment operator. Doesn’t copy anything, really, just initializes new object and enables copy constructing subclasses. |
static bool ReferenceEquals(ptr const&, ptr const&) | Compares objects by reference. |
static std::enable_if<!IsSmartPtr<T>::value, bool>::type ReferenceEquals(T const&, T const&) | Compares objects by reference. |
static std::enable_if<!IsSmartPtr<T>::value, bool>::type ReferenceEquals(T const&, std::nullptr_t) | Reference-compares value type object with nullptr. |
bool ReferenceEquals(String const&, std::nullptr_t) | Specialization of Object::ReferenceEquals for case of string and nullptr. |
bool ReferenceEquals(String const&, String const&) | Specialization of Object::ReferenceEquals for case of strings. |
void Remove() override | Removes slide from presentation. |
int RemovedSharedRefs(int) | Decreases shared reference count by specified value. |
void RenderToGraphics(System::SharedPtr<Export::IRenderingOptions>, System::SharedPtr<System::Drawing::Graphics>) override | Renders certain slide to a Graphics object. |
void RenderToGraphics(System::SharedPtr<Export::IRenderingOptions>, System::SharedPtr<System::Drawing::Graphics>, float, float) override | Renders certain slide to a Graphics object with custom scaling. |
void RenderToGraphics(System::SharedPtr<Export::IRenderingOptions>, System::SharedPtr<System::Drawing::Graphics>, System::Drawing::Size) override | Renders certain slide to a Graphics object using specified size. |
void Reset() override | Resets position, size and formatting of every shape that has a prototype on LayoutSlide. |
void set_Hidden(bool) override | Determines whether the specified slide is hidden during a slide show. Write bool. |
void set_LayoutSlide(System::SharedPtr<ILayoutSlide>) override | Sets the layout slide for the current slide. Write ILayoutSlide. |
void set_Name(System::String) override | Sets the name of a slide. Write System::String. |
void set_ShowMasterShapes(bool) override | Specifies if shapes on the master slide should be shown on slides or not. Write bool. |
void set_SlideNumber(int32_t) override | Returns a number of slide. Index of slide in Presentation::get_Slides() collection is always equal to SlideNumber - Presentation::get(set)_FirstSlideNumber. Write int32_t. |
virtual void SetTemplateWeakPtr(uint32_t) | Set n’th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. |
int SharedCount() const | Gets current value of shared reference counter. |
Object * SharedRefAdded() | Increments shared reference count. Shouldn’t be called directly; instead, use smart pointers or ThisProtector. |
int SharedRefRemovedSafe() | Decrements and returns shared reference count. Shouldn’t be called directly; instead, use smart pointers or ThisProtector. |
virtual String ToString() const | Analog of C# Object.ToString() method. Enables converting custom objects to string. |
static const TypeInfo& Type() | Implements C# typeof(System.Object) construct. |
void Unlock() | Implements C# lock() statement unlocking. Call directly or use LockContext sentry object. |
Detail::SmartPtrCounter * WeakRefAdded() | Increments weak reference count. Shouldn’t be called directly; instead, use smart pointers or ThisProtector. |
void WeakRefRemoved() | Decrements weak reference count. Shouldn’t be called directly; instead, use smart pointers or ThisProtector. |
void WriteAsSvg(System::SharedPtr<System::IO::Stream>) override | Saves content of slide as SVG file. |
void WriteAsSvg(System::SharedPtr<System::IO::Stream>, System::SharedPtr<Export::ISVGOptions>) override | Saves content of slide as SVG file. |
virtual ~Object() | Destroys object. Frees all internal data structures. |
See Also
- Class BaseSlide
- Class ISlide
- Namespace Aspose::Slides
- Library Aspose.Slides