UserFlowStartBlock(FuncBoolean, FlowMode) Method

Begins a block of flow items

Definition

Namespace: Firefly.Box.Flow
Assembly: Firefly.Box (in Firefly.Box.dll) Version: debug-master-v:33791
C#
public void StartBlock(
	Func<bool> condition,
	FlowMode flowMode
)

Parameters

condition  FuncBoolean
The condition the determines if the actions within this block are executed
flowMode  FlowMode
Restricts the actions in this block to only be performed, if the current flow mode matches this parameter

Remarks

All the items added to the flow, until the EndBlock method is called, will be executed only if the block's condition is met.
Columns that are added between the StartBlock, and the EndBlock method will only be parked if the block's condition is met

See Also