UserFlowStartBlock(FuncBoolean) Method
Begins a block of flow items
Namespace: Firefly.Box.FlowAssembly: Firefly.Box (in Firefly.Box.dll) Version: debug-master-v:33791
public void StartBlock(
Func<bool> condition
)
Public Sub StartBlock (
condition As Func(Of Boolean)
)
member StartBlock :
condition : Func<bool> -> unit
Parameters
- condition FuncBoolean
- The condition the determines if the actions within this block are executed
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