FlowMode Enumeration

Determines the navigation mode between controls.

Definition

Namespace: Firefly.Box.Flow
Assembly: Firefly.Box (in Firefly.Box.dll) Version: debug-master-v:33791
C#
public enum FlowMode

Remarks

Usually used with UIController using object return by the UseUserFlow method.

Example

FlowMode
C#

Members

Tab0 The user is navigating between columns using the GoToNextControl or GoToPreviousControl commands, which are mapped by default to the Tab and Shift Tab keys accordingly.
Skip1 The user is either navigating using the mouse in the current row or leaving the current row.
TabOrSkip2 A combination of Tab and Skip
ExpandBefore3 When the user is parked on the next selected column and invokes the ExpandCommand. After the Command execution, th user will return to the property that originated the ExpandCommand.
ExpandAfter4 When the user is parked on the previous selected propert and invokes the ExpandCommand. After the Command execution the user will park on the next column.

See Also