Intersoft ClientUI Documentation
RoutingStrategy Enumeration
See Also  Send Feedback
Intersoft.Client.Framework Namespace : RoutingStrategy Enumeration






Indicates the routing strategy of a routed event.

Syntax

Visual Basic (Declaration) 
Public Enum RoutingStrategy 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As RoutingStrategy
C# 
public enum RoutingStrategy : System.Enum 
Delphi 
public enum RoutingStrategy = class(System.Enum)
JScript 
public enum RoutingStrategy extends System.Enum
Managed Extensions for C++ 
__value public enum RoutingStrategy : public System.Enum 
C++/CLI 
public enum class RoutingStrategy : public System.Enum 

Members

MemberDescription
BubbleThe routed event uses a tunneling strategy, where the event instance routes downwards through the tree, from root to source element.
DirectThe routed event uses a bubbling strategy, where the event instance routes upwards through the tree, from event source to root.
TunnelThe routed event does not route through an element tree, but does support other routed event capabilities such as class handling.

Remarks

Routing strategy for each routed event must be only one of these values. However, input events often exist in pairs on base classes, where one event is the bubbling version and one event is the tunneling version. For input events uniquely, the tunneling and bubbling versions have shared arguments and are raised in succession in response to the input device condition that raises the events.

For more information, see Routed Events Overview.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Intersoft.Client.Framework.RoutingStrategy

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.