Comment Interface
A comment in the document - a text note that is attached to a DocumentRange.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v21.2.Core.dll
Declaration
Remarks
Comments are contained in the CommentCollection, which is accessed by the SubDocument.Comments property.
Use the CommentCollection.Create to create a new comment with the specified settings.
Note
When the user adds a comment from the User Interface, the comment’s author is obtained from the CommentOptions.Author property.
Example
Document document = server.Document;
server.LoadDocument("Documents\\Grimm.docx", DocumentFormat.OpenXml);
DocumentRange docRange = document.Paragraphs[2].Range;
string commentAuthor = "Johnson Alphonso D";
document.Comments.Create(docRange, commentAuthor, DateTime.Now);
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the Comment interface.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.