Table of Contents

Enum RoutingStrategy

Namespace
Stride.UI.Events
Assembly
Stride.UI.dll

Indicates the routing strategy of a routed event.

public enum RoutingStrategy

Fields

Bubble = 0

The routed event uses a bubbling strategy, where the event instance routes upwards through the tree, from event source to root.

Direct = 2

The routed event does not route through an element tree, but does support other routed event capabilities such as class handling.

Tunnel = 1

The routed event uses a tunneling strategy, where the event instance routes downwards through the tree, from root to source element.