com.aspose.slides
Interface ICommentCollection

All Superinterfaces:
com.aspose.ms.System.Collections.ICollection<IComment>, com.aspose.ms.System.Collections.IEnumerable<IComment>, com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IComment>, java.lang.Iterable<IComment>
All Known Implementing Classes:
CommentCollection

public interface ICommentCollection
extends com.aspose.ms.System.Collections.ICollection<IComment>, com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IComment>

Represents a collection of comments of one author.


Method Summary
 IComment addComment(java.lang.String text, ISlide slide, java.awt.geom.Point2D.Float position, java.util.Date creationTime)
           
 void clear()
           
 IComment get_Item(int index)
           
 IComment insertComment(int index, java.lang.String text, ISlide slide, java.awt.geom.Point2D.Float position, java.util.Date creationTime)
           
 void remove(IComment comment)
           
 void removeAt(int index)
           
 IComment[] toArray()
           
 IComment[] toArray(int startIndex, int count)
           
 
Methods inherited from interface com.aspose.ms.System.Collections.ICollection
copyTo, getSyncRoot, isSynchronized, size
 
Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable
iterator
 

Method Detail

get_Item

IComment get_Item(int index)

addComment

IComment addComment(java.lang.String text,
                    ISlide slide,
                    java.awt.geom.Point2D.Float position,
                    java.util.Date creationTime)

insertComment

IComment insertComment(int index,
                       java.lang.String text,
                       ISlide slide,
                       java.awt.geom.Point2D.Float position,
                       java.util.Date creationTime)

toArray

IComment[] toArray()

toArray

IComment[] toArray(int startIndex,
                   int count)

removeAt

void removeAt(int index)

remove

void remove(IComment comment)

clear

void clear()