com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface ICommentAuthor

  • All Known Implementing Classes:
    CommentAuthor


    public interface ICommentAuthor

    Represents an author of comments.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      ICommentCollection getComments()
      Returns the collection of comments made by this author.
      java.lang.String getInitials()
      Returns or sets the authors initials.
      java.lang.String getName()
      Returns or sets the author's name.
      void remove()
      Removes the author from the parent collection.
      void setInitials(java.lang.String value)
      Returns or sets the authors initials.
      void setName(java.lang.String value)
      Returns or sets the author's name.
    • Method Detail

      • getName

        java.lang.String getName()

        Returns or sets the author's name. Read/write String.

      • setName

        void setName(java.lang.String value)

        Returns or sets the author's name. Read/write String.

      • getInitials

        java.lang.String getInitials()

        Returns or sets the authors initials. Read/write String.

      • setInitials

        void setInitials(java.lang.String value)

        Returns or sets the authors initials. Read/write String.

      • remove

        void remove()

        Removes the author from the parent collection.

        Throws:
        PptxEditException - Thrown if author is already removed.