Comment Interface
A comment in the document - a text note that is attached to a DocumentRange.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v23.1.Core.dll
NuGet Package: DevExpress.RichEdit.Core
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);
See Also