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

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

Definition

Namespace:Telerik.WinControls.UI.Diagrams

Assembly:Telerik.WinControls.RadDiagram.dll

Syntax:

C#
public class RadRoutedEditEventArgs : RoutedEventArgs

Inheritance: objectEventArgsRoutedEventArgsRadRoutedEditEventArgs

Inherited Members RoutedEventArgs.InvokeEventHandler(Delegate, object)RoutedEventArgs.OnSetSource(object)RoutedEventArgs.HandledRoutedEventArgs.OriginalSourceRoutedEventArgs.RoutedEventRoutedEventArgs.SourceEventArgs.Empty...

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; }