New to Telerik UI for WPFStart a free 30-day trial

Provides information about the revision of a document element, including details such as the revision state and associated user.

Definition

Namespace:Telerik.Windows.Documents.Model.Revisions

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public class DocumentElementRevisionInfo

Inheritance: objectDocumentElementRevisionInfo

Constructors

C#
public DocumentElementRevisionInfo()
C#
public DocumentElementRevisionInfo(RevisionInfo info)
Parameters:infoRevisionInfo

Properties

Gets a value indicating whether the document element is marked as deleted.

C#
[XamlSerializable]
public bool IsDeleted { get; set; }

Gets a value indicating whether the document element has been inserted in the document.

C#
[XamlSerializable]
public bool IsInserted { get; set; }
Property Value:

true if the document element is inserted; otherwise, false.

Gets information about the revision of the document element, including details such as the revision ID, timestamp, and the user who made the revision.

C#
[XamlCompositePropertySerializable]
public RevisionInfo RevisionInfo { get; set; }

Methods

Creates a deep copy of the current DocumentElementRevisionInfo instance.

C#
public DocumentElementRevisionInfo CreateDeepCopy()
Returns:

DocumentElementRevisionInfo

A new instance of DocumentElementRevisionInfo that is a deep copy of the original.