Enum BpmnTaskType
Specifies the type of the task in BpmnActivity.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum BpmnTaskType
Examples
Node node = new Node()
{
Shape = new BpmnActivity()
{
ActivityType = BpmnActivityType.Task,
TaskType = BpmnTaskType.Service,
IsCall = true,
ISCompensationActivity = true,
Loop = BpmnLoopCharacteristic.Standard,
}
};
Fields
| Name | Description |
|---|---|
| BusinessRule | Specifies the type of a task to be a Business Rule task according to BPMN. |
| InstantiatingReceive | Specifies the type of a task to be a InstantiatingReceive task according to BPMN. |
| Manual | Specifies the type of a task to be a Manual task according to BPMN. |
| None | Specifies the type of a task to be a None task according to BPMN. |
| Receive | Specifies the type of a task to be a Receive task according to BPMN. |
| Script | Specifies the type of a task to be a Script task according to BPMN. |
| Send | Specifies the type of a task to be a Send task according to BPMN. |
| Service | Specifies the type of a task to be a Service task according to BPMN. |
| User | Specifies the type of a task to be a User task according to BPMN. |