Class BpmnLoopCharacteristic
Specifies the LoopCharacteristics of BpmnActivity/BpmnExpandedSubProcess.
Inheritance
System.Object
BpmnLoopCharacteristic
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class BpmnLoopCharacteristic : Enum
Examples
Node node = new Node()
{
Shape = new BpmnActivity()
{
ActivityType = BpmnActivityType.Task,
Loop = BpmnLoopCharacteristic.Standard,
}
};
Fields
None
Specifies that an Activity is not looping according to BPMN.
Declaration
public const BpmnLoopCharacteristic None
Field Value
Type |
---|
BpmnLoopCharacteristic |
ParallelMultiInstance
Specifies that an Activity has a parallel Multi-Instance Loop Characteristic according to BPMN.
Declaration
public const BpmnLoopCharacteristic ParallelMultiInstance
Field Value
Type |
---|
BpmnLoopCharacteristic |
SequenceMultiInstance
Specifies that an Activity has a sequential Multi-Instance Loop Characteristic according to BPMN.
Declaration
public const BpmnLoopCharacteristic SequenceMultiInstance
Field Value
Type |
---|
BpmnLoopCharacteristic |
Standard
Specifies that an Activity has a Standard Loop Characteristic according to BPMN.
Declaration
public const BpmnLoopCharacteristic Standard
Field Value
Type |
---|
BpmnLoopCharacteristic |