Class RaisedRoutedEvent
Represents a raised routed event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public class RaisedRoutedEvent
Constructors
RaisedRoutedEvent()
Initializes a new instance of the RaisedRoutedEvent class.
Declaration
public RaisedRoutedEvent()
RaisedRoutedEvent(RoutedEvent, String, EventBehaviorSenderType, RoutingDirection)
Initializes a new instance of the RaisedRoutedEvent class using routed event, event sender, sender's type, and routing direction (tunnel or bubble).
Declaration
public RaisedRoutedEvent(RoutedEvent routedEvent, string sender, EventBehaviorSenderType senderType, RoutingDirection direction)
Parameters
Routed
|
System.
|
Event
|
Routing
|
Properties
Direction
Gets or sets the routing direction - tunnel or bubble.
Declaration
public RoutingDirection Direction { get; set; }
Property Value
RoutedEvent
Gets or sets a value indicating the routed event.
Declaration
public RoutedEvent RoutedEvent { get; set; }
Property Value
RoutedEventFullName
Gets or sets a string value indicating the routed event name.
Declaration
public string RoutedEventFullName { get; set; }
Property Value
System.
|
Sender
Gets or sets the sender.
Declaration
public string Sender { get; set; }
Property Value
System.
|
SenderType
Gets or sets the sender's type.
Declaration
public EventBehaviorSenderType SenderType { get; set; }
Property Value
Methods
IsSameEvent(RadElement, RoutedEventArgs)
Compares the instance with the other event arguments and the sender of the event.
Declaration
public bool IsSameEvent(RadElement senderElement, RoutedEventArgs eventArgs)
Parameters
Rad
|
Routed
|
Returns
System.
|
IsSameEvent(RaisedRoutedEvent)
Compares the instance with another event passed as a parameter.
Declaration
public bool IsSameEvent(RaisedRoutedEvent targetEvent)
Parameters
Raised
|
Returns
System.
|