Class DocumentChangedEventArgs
Represents document changed event args.
Inheritance
System.Object
System.EventArgs
DocumentChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Documents.Fixed
Assembly: Telerik.Windows.Controls.FixedDocumentViewers.dll
Syntax
public class DocumentChangedEventArgs : EventArgs
Constructors
DocumentChangedEventArgs(RadFixedDocument, RadFixedDocument)
Initializes a new instance of the DocumentChangedEventArgs class.
Declaration
public DocumentChangedEventArgs(RadFixedDocument oldDocument, RadFixedDocument newDocument)
Parameters
Telerik.Windows.Documents.Fixed.Model.RadFixedDocument
oldDocument
The old document. |
Telerik.Windows.Documents.Fixed.Model.RadFixedDocument
newDocument
The new document. |
Properties
NewDocument
Gets or sets the new document.
Declaration
public RadFixedDocument NewDocument { get; set; }
Property Value
Telerik.Windows.Documents.Fixed.Model.RadFixedDocument
The new document. |
OldDocument
Gets or sets the old document.
Declaration
public RadFixedDocument OldDocument { get; set; }
Property Value
Telerik.Windows.Documents.Fixed.Model.RadFixedDocument
The old document. |