CommentCollection Interface
A collection of Comment objects.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v24.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
[ComVisible(true)]
public interface CommentCollection :
ReadOnlyCommentCollection,
ISimpleCollection<Comment>,
IEnumerable<Comment>,
IEnumerable,
ICollection
Related API Members
The following members return CommentCollection objects:
Remarks
A CommentCollection object is available using the SubDocument.Comments property. It contains all comments in the current document.
Items in the CommentCollection
are ordered and indexed in the same order as the ranges to which they belong. That is, a comment whose Comment.Range is closer to the beginning of the document has a lower index value.
See Also