Skip to main content
A newer version of this page is available. .

DXRichEditAnnotationOptions.VisibleAuthors Property

Provides access to the visible reviewer’s names collection.

Namespace: DevExpress.Xpf.RichEdit

Assembly: DevExpress.Xpf.RichEdit.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.RichEdit, DevExpress.Wpf.RichEdit

Declaration

public IList<string> VisibleAuthors { get; }

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
.AnnotationOptions .VisibleAuthors

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