com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface IBaseSlide

    • Method Detail

      • getName

        java.lang.String getName()

        Returns or sets the name of a slide. Read/write String.

      • setName

        void setName(java.lang.String value)

        Returns or sets the name of a slide. Read/write String.

      • getSlideId

        long getSlideId()

        Returns the ID of a slide. Read-only long.

      • getSlideShowTransition

        ISlideShowTransition getSlideShowTransition()

        Returns the TransitionEx object which contains information about how the specified slide advances during a slide show. Read-only ISlideShowTransition.

      • getShowMasterShapes

        boolean getShowMasterShapes()

        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.

        Throws:
        com.aspose.ms.System.NotSupportedException - Thrown if set true for master slide.
      • setShowMasterShapes

        void setShowMasterShapes(boolean value)

        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.

        Throws:
        com.aspose.ms.System.NotSupportedException - Thrown if set true for master slide.
      • findShapeByAltText

        IShape findShapeByAltText(java.lang.String altText)

        Finds first occurrence of a shape with the specified alternative text.

        Parameters:
        altText - Alternative text.
        Returns:
        ShapeEx object or null.
      • joinPortionsWithSameFormatting

        void joinPortionsWithSameFormatting()

        Joins runs with same formatting in all paragraphs in all acceptable shapes.

      • equals

        boolean equals(IBaseSlide slide)

        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.

        Parameters:
        slide - The IBaseSlide to compare with the current IBaseSlide.
        Returns:
        <b>true</b> if the specified IBaseSlide is equal to the current IBaseSlide; otherwise, <b>false</b>.