Skip to main content
All docs
V25.1
  • DXRichEditAnnotationOptions.ShowAllAuthors Property

    Specifies whether to show annotations (comments and tracked changes) from all authors.

    Namespace: DevExpress.Xpf.RichEdit

    Assembly: DevExpress.Xpf.RichEdit.v25.1.dll

    NuGet Package: DevExpress.Wpf.RichEdit

    Declaration

    public bool ShowAllAuthors { get; set; }

    Property Value

    Type Description
    Boolean

    true, to show revisions from all authors; otherwise, false.

    Property Paths

    You can access this nested property as listed below:

    Object Type Path to ShowAllAuthors
    RichEditControl
    .AnnotationOptions .ShowAllAuthors

    Remarks

    Set this property to false to use the DXRichEditAnnotationOptions.VisibleAuthors property and specify authors whose revisions 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");
    

    The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ShowAllAuthors property.

    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.

    See Also