Class RadRoutedEditEventArgs
Contains state information and event data associated with a routed event.
Inherited Members
Namespace: Telerik.Windows.Controls.Diagrams
Assembly: Telerik.Windows.Controls.Diagrams.dll
Syntax
public class RadRoutedEditEventArgs : RadRoutedEventArgs
Constructors
RadRoutedEditEventArgs(RoutedEvent, Object, Object, Boolean)
Initializes a new instance of the RadRoutedEditEventArgs class, using the supplied routed event identifier, and providing the opportunity to declare a different source for the event.
Declaration
public RadRoutedEditEventArgs(RoutedEvent routedEvent, object source, object editedContent, bool commitChanges = true)
Parameters
RoutedEvent
routedEvent
The routed event identifier for this instance of the RoutedEventArgs class. |
System.Object
source
An alternate source that will be reported when the event is handled. This pre-populates the Source property. |
System.Object
editedContent
The result of the edit operation. |
System.Boolean
commitChanges
Determines whether the changes will be committed. |
Properties
CommitChanges
Gets or sets whether the changes should be committed.
Declaration
public bool CommitChanges { get; set; }
Property Value
System.Boolean
|
EditedContent
Gets the result of the edit operation.
Declaration
public object EditedContent { get; }
Property Value
System.Object
|