Represents document changed event args.
Definition
Namespace:Telerik.Windows.Documents.Fixed
Assembly:Telerik.Windows.Controls.FixedDocumentViewers.dll
Syntax:
C#
public class DocumentChangedEventArgs : EventArgs
Inheritance: objectEventArgsDocumentChangedEventArgs
Inherited Members
Constructors
Initializes a new instance of the DocumentChangedEventArgs class.
C#
public DocumentChangedEventArgs(RadFixedDocument oldDocument, RadFixedDocument newDocument)
The old document.
newDocumentRadFixedDocumentThe new document.
Properties
NewDocument
RadFixedDocument
Gets or sets the new document.
C#
public RadFixedDocument NewDocument { get; set; }
The new document.
OldDocument
RadFixedDocument
Gets or sets the old document.
C#
public RadFixedDocument OldDocument { get; set; }
The old document.