New to Telerik UI for WPFStart a free 30-day trial

Contains state information and event data associated with a routed event.

Definition

Namespace:Telerik.Windows.Controls.Diagrams

Assembly:Telerik.Windows.Controls.Diagrams.dll

Syntax:

C#
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.

C#
public RadRoutedEditEventArgs(RoutedEvent routedEvent, object source, object editedContent, bool commitChanges = true)
Parameters:routedEventRoutedEvent

The routed event identifier for this instance of the RoutedEventArgs class.

sourceobject

An alternate source that will be reported when the event is handled. This pre-populates the Source property.

editedContentobject

The result of the edit operation.

commitChangesbool

Determines whether the changes will be committed.

Properties

Gets or sets whether the changes should be committed.

C#
public bool CommitChanges { get; set; }

Gets the result of the edit operation.

C#
public object EditedContent { get; }