Class BpmnGateways
The Gateway controls the flow of a process and it is represented by a diamond shape. This enumeration defines the type of gateway to be set in the BPMN shape.
Inheritance
System.Object
BpmnGateways
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class BpmnGateways : Enum
Examples
<SfDiagram Height="600px" Nodes="@NodeCollection">
</SfDiagram>
@code{
//Initialize the node collection with node
ObservableCollection<DiagramNode> NodeCollection = new ObservableCollection<DiagramNode>()
{
new DiagramNode()
{
OffsetX = 100, OffsetY = 100,
Width = 100, Height = 100,
Shape = new DiagramShape()
{
Type = Shapes.Bpmn, BpmnShape = BpmnShapes.Gateway,
///Sets type of the gateway to None
Gateway = new DiagramBpmnGateway(){Type = BpmnGateways.Parallel}
}
}
};
}
Fields
Complex
Sets the gateway type to Complex and it is represented by an asterisk symbol inside the gateway.
Declaration
public const BpmnGateways Complex
Field Value
EventBased
Sets the gateway type to Event.
Declaration
public const BpmnGateways EventBased
Field Value
Exclusive
Sets the gateway type to Exclusive and it is represented by a cross symbol inside the gateway shape.
Declaration
public const BpmnGateways Exclusive
Field Value
ExclusiveEventBased
Sets the gateway type to ExclusiveEventBased.
Declaration
public const BpmnGateways ExclusiveEventBased
Field Value
Inclusive
Sets the gateway type to Inclusive and it is represented by a circle inside the gateway shape.
Declaration
public const BpmnGateways Inclusive
Field Value
None
Sets the gateway type to None and it is represented by a diamond(gateway) shape with no symbols in it.
Declaration
public const BpmnGateways None
Field Value
Parallel
Sets the gateway type to Parallel. It is represented by an addition sign inside the gateway shape.
Declaration
public const BpmnGateways Parallel
Field Value
ParallelEventBased
Sets the gateway type to ParallelEventBased.
Declaration
public const BpmnGateways ParallelEventBased
Field Value
value__
Declaration
Field Value
Type |
Description |
System.Int32 |
|