ClassDocumentElementRevisionInfo
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:
public class DocumentElementRevisionInfo
Inheritance: objectDocumentElementRevisionInfo
Constructors
DocumentElementRevisionInfo()
Declaration
public DocumentElementRevisionInfo()
DocumentElementRevisionInfo(RevisionInfo)
Declaration
public DocumentElementRevisionInfo(RevisionInfo info)
Parameters
info
Properties
IsDeleted
Gets a value indicating whether the document element is marked as deleted.
Declaration
[XamlSerializable]
public bool IsDeleted { get; set; }
Property Value
IsInserted
Gets a value indicating whether the document element has been inserted in the document.
Declaration
[XamlSerializable]
public bool IsInserted { get; set; }
Property Value
true if the document element is inserted; otherwise, false.
RevisionInfo
Gets information about the revision of the document element, including details such as the revision ID, timestamp, and the user who made the revision.
Declaration
[XamlCompositePropertySerializable]
public RevisionInfo RevisionInfo { get; set; }
Property Value
Methods
CreateDeepCopy()
Creates a deep copy of the current DocumentElementRevisionInfo instance.
Declaration
public DocumentElementRevisionInfo CreateDeepCopy()
Returns
A new instance of DocumentElementRevisionInfo that is a deep copy of the original.