Class RoutedEventArgs
Represents event arguments for a routed event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public class RoutedEventArgs : EventArgs
Constructors
RoutedEventArgs(EventArgs, RoutedEvent)
Initializes a new instance of the RoutedEventArgs class using EventsArgs to initializes its base class and the RoutedEvent.
Declaration
public RoutedEventArgs(EventArgs args, RoutedEvent routedEvent)
Parameters
System.EventArgs
args
|
RoutedEvent
routedEvent
|
Properties
Canceled
Gets or sets a value indicating whether the event is canceled.
Declaration
public bool Canceled { get; set; }
Property Value
System.Boolean
|
Direction
Gets or sets a value indicating the routing direction for the event.
Declaration
public RoutingDirection Direction { get; set; }
Property Value
RoutingDirection
|
OriginalEventArgs
Gets or sets the original EventArgs.
Declaration
public EventArgs OriginalEventArgs { get; set; }
Property Value
System.EventArgs
|
RoutedEvent
Gets or sets a value indicating the RoutedEvent.
Declaration
public RoutedEvent RoutedEvent { get; set; }
Property Value
RoutedEvent
|