Comment Interface
A comment in the document - a text note that is attached to a DocumentRange.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v19.1.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 end-user adds a comment via UI commands, the comment’s author is obtained from the CommentOptions.Author property.
Example
Note
A complete sample project is available at https://github.com/DevExpress-Examples/winforms-richedit-document-api-e5219
document.LoadDocument("Grimm.docx", DevExpress.XtraRichEdit.DocumentFormat.OpenXml)
Dim docRange As DocumentRange = document.Paragraphs(2).Range
Dim commentAuthor As String = "Johnson Alphonso D"
document.Comments.Create(docRange, commentAuthor, Date.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.