Skip to main content
All docs
V25.1
  • RevisionCollection.Get(SubDocument) Method

    Retrieves all revisions related to the specific document part.

    Namespace: DevExpress.XtraRichEdit.API.Native

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

    NuGet Package: DevExpress.RichEdit.Core

    Declaration

    IEnumerable<Revision> Get(
        SubDocument subDocument
    )

    Parameters

    Name Type Description
    subDocument SubDocument

    An object implementing the SubDocument interface that is the target document part (main body, header or footer, text box or comment.

    Returns

    Type Description
    IEnumerable<Revision>

    A collection of revisions related to the target SubDocument.

    Remarks

    The following properties allow you to access a specific document part’s SubDocument:

    Document Part Property
    Main Body RichEditDocumentServer.Document
    Header or Footer Section.BeginUpdateHeader
    Section.BeginUpdateFooter
    Comment Comment.BeginUpdate
    Text Box TextBox.Document

    The code sample below shows how to get revisions made in the text box:

    foreach (Shape shape in documentProcessor.Document.Shapes)
    {
        if (shape.TextBox != null)
        {
            var textBoxRevisions = documentRevisions.Get(shape.TextBox.Document);
        }
    }
    
    See Also