Enum BpmnSubProcessType
Specifies the Boundary.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum BpmnSubProcessType
Examples
Node node = new Node()
{
Shape = new BpmnActivity()
{
ActivityType = BpmnActivityType.Subprocess,
TaskType = BpmnTaskType.Service,
IsCall = true,
ISCompensationActivity = true,
SubProcessType = BpmnSubProcessType.Transaction,
Loop = BpmnLoopCharacteristic.Standard,
}
};
Fields
| Name | Description |
|---|---|
| Call | Specifies the type of an activity to be a Call Boundary according to BPMN. |
| Default | Specifies the type of an activity to be a Default Boundary according to BPMN. |
| Event | Specifies the type of an activity to be a Event Boundary according to BPMN. |
| Transaction | Specifies the type of an activity to be a Transaction Boundary according to BPMN. |