AnnotationOptions.VisibleAuthors Property | Office File API | DevExpress Documentation Skip to main content
All docs
V26.1
  • AnnotationOptions.VisibleAuthors Property

    Provides access to the visible reviewer’s names collection.

    Namespace: DevExpress.XtraRichEdit

    Assembly: DevExpress.RichEdit.v26.1.Core.dll

    Declaration

    public IList<string> VisibleAuthors { get; }

    Property Value

    Property Paths

    You can access this nested property as listed below:

    Remarks

    Set the AnnotationOptions.ShowAllAuthors property to false to disable showing annotations from authors. Then you can use the AnnotationOptions.VisibleAuthors property to remove or add reviewers whose annotations (comments and tracked changes) should be displayed.

    richEditControl.Options.Annotations.Author = "Anne Dodsworth";
    
    //Disable showing revisions from all authors
    richEditControl.Options.Annotations.ShowAllAuthors = false;
    
    //Remove authors whose revisions should not be displayed:
    richEditControl.Options.Annotations.VisibleAuthors.Remove("Ryan Anita W");
    richEditControl.Options.Annotations.VisibleAuthors.Remove("Michael Suyama");
    
    See Also
    Use of this site constitutes acceptance of our Website Terms of Use and Privacy Policy (Updated). Cookies Settings