Enum BpmnGatewayType
Specifies the type of BpmnGateway.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum BpmnGatewayType
Examples
Node node = new Node()
{
Shape = new BpmnGateway()
{
GatewayType = BpmnGatewayType.None
}
};
Fields
| Name | Description |
|---|---|
| Complex | Specifies that a Gateway has the type Complex according to BPMN. |
| EventBased | Specifies that a Gateway has the type Event-Based according to BPMN. |
| Exclusive | Specifies that a Gateway has the type Exclusive according to BPMN. |
| ExclusiveEventBased | Specifies that a Gateway has the type Exclusive Event-Based according to BPMN. |
| Inclusive | Specifies that a Gateway has the type Inclusive according to BPMN. |
| None | Specifies that a Gateway has the type None according to BPMN. |
| Parallel | Specifies that a Gateway has the type Parallel according to BPMN. |
| ParallelEventBased | Specifies that a Gateway has the type Parallel Event-Based according to BPMN. |