Contains state information and event data associated with a routed event.
Definition
Namespace:Telerik.Windows.Controls.Diagrams
Assembly:Telerik.Windows.Controls.Diagrams.dll
Syntax:
public class RadRoutedEditEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsRadRoutedEditEventArgs
Constructors
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.
public RadRoutedEditEventArgs(RoutedEvent routedEvent, object source, object editedContent, bool commitChanges = true)
The routed event identifier for this instance of the RoutedEventArgs class.
sourceobjectAn alternate source that will be reported when the event is handled. This pre-populates the Source property.
editedContentobjectThe result of the edit operation.
commitChangesboolDetermines whether the changes will be committed.
Properties
Gets or sets whether the changes should be committed.
public bool CommitChanges { get; set; }
Gets the result of the edit operation.
public object EditedContent { get; }