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
RoutedEvent
routedEvent
|
System.String
sender
|
EventBehaviorSenderType
senderType
|
RoutingDirection
direction
|
Properties
Direction
Gets or sets the routing direction - tunnel or bubble.
Declaration
public RoutingDirection Direction { get; set; }
Property Value
RoutingDirection
|
RoutedEvent
Gets or sets a value indicating the routed event.
Declaration
public RoutedEvent RoutedEvent { get; set; }
Property Value
RoutedEvent
|
RoutedEventFullName
Gets or sets a string value indicating the routed event name.
Declaration
public string RoutedEventFullName { get; set; }
Property Value
System.String
|
Sender
Gets or sets the sender.
Declaration
public string Sender { get; set; }
Property Value
System.String
|
SenderType
Gets or sets the sender's type.
Declaration
public EventBehaviorSenderType SenderType { get; set; }
Property Value
EventBehaviorSenderType
|
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
RadElement
senderElement
|
RoutedEventArgs
eventArgs
|
Returns
System.Boolean
|
IsSameEvent(RaisedRoutedEvent)
Compares the instance with another event passed as a parameter.
Declaration
public bool IsSameEvent(RaisedRoutedEvent targetEvent)
Parameters
RaisedRoutedEvent
targetEvent
|
Returns
System.Boolean
|