ICommentCollection

ICommentCollection

Overview

ICommentCollection is a interface in Aspose.Slides FOSS for .NET.

Represents a collection of comments.

Properties

NameTypeAccessDescription
AsICollectionIList<IComment>ReadProvides the collection as an IList
AsIEnumerableIEnumerable<IComment>ReadProvides the collection as an IEnumerable
CountintRead

Methods

SignatureDescription
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.

See Also