ICommentCollection
Overview
ICommentCollection is a interface in Aspose.Slides FOSS for .NET.
Represents a collection of comments.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
AsICollection | IList<IComment> | Read | Provides the collection as an IList |
AsIEnumerable | IEnumerable<IComment> | Read | Provides the collection as an IEnumerable |
Count | int | Read |
Methods
| Signature | Description |
|---|---|
ToArray() | An array of all comments. |
ToArray(start: int, count: int) | An array of comments in the specified range. |
AddComment(text: string, slide: ISlide, position: PointF, creationTime: DateTime) | The newly created comment. |
InsertComment(index: int, text: string, slide: ISlide, position: PointF, creationTime: DateTime) | The newly created comment. |
RemoveAt(index: int) | The zero-based index. |
Remove(comment: IComment) | The comment to remove. |
Clear() | |
FindCommentByIdx(idx: int) | The matching comment, or null if not found. |