Class
RadRoutedEditEventArgs

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

Definition

Namespace:Telerik.Windows.Controls.Diagrams

Assembly:Telerik.Windows.Controls.Diagrams.dll

Syntax:

cs-api-definition
public class RadRoutedEditEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsRadRoutedEditEventArgs

Constructors

RadRoutedEditEventArgs(RoutedEvent, object, object, bool)

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

cs-api-definition
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.

source

object

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

editedContent

object

The result of the edit operation.

commitChanges

bool

Determines whether the changes will be committed.

Properties

CommitChanges

Gets or sets whether the changes should be committed.

Declaration

cs-api-definition
public bool CommitChanges { get; set; }

Property Value

bool

EditedContent

Gets the result of the edit operation.

Declaration

cs-api-definition
public object EditedContent { get; }

Property Value

object