DXRichEditAnnotationOptions.VisibleAuthors Property
Provides access to the visible reviewer’s names collection.
Namespace: DevExpress.Xpf.RichEdit
Assembly: DevExpress.Xpf.RichEdit.v24.1.dll
NuGet Package: DevExpress.Wpf.RichEdit
Declaration
Property Value
Type | Description |
---|---|
IList<String> | A IList<T> object that is the collection of visible author’s names. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to VisibleAuthors |
---|---|
RichEditControl |
|
Remarks
Set the DXRichEditAnnotationOptions.ShowAllAuthors property to false to use the VisibleAuthors property and specify authors whose annotations should be displayed.
richEditControl1.AnnotationOptions.Author = "Anne Dodsworth";
//Disable showing revisions from all authors
richEditControl1.AnnotationOptions.ShowAllAuthors = false;
//Remove authors whose revisions should not be displayed:
richEditControl1.AnnotationOptions.VisibleAuthors.Remove("Ryan Anita W");
richEditControl1.AnnotationOptions.VisibleAuthors.Remove("Michael Suyama");
See Also