Class BpmnEventType
Specifies the type of BpmnEvent.
Inheritance
System.Object
BpmnEventType
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class BpmnEventType : Enum
Examples
Node node = new Node()
{
Shape = new BpmnEvent()
{
EventType = BpmnEventType.Intermediate,
Trigger = BpmnEventTrigger.None
}
};
Fields
End
Specifies that an event is a End event according to BPMN.
Declaration
public const BpmnEventType End
Field Value
Type |
---|
BpmnEventType |
Intermediate
Specifies that an event is a Intermediate event according to BPMN.
Declaration
public const BpmnEventType Intermediate
Field Value
Type |
---|
BpmnEventType |
NonInterruptingIntermediate
Specifies that an event is a NonInterruptingIntermediate event according to BPMN.
Declaration
public const BpmnEventType NonInterruptingIntermediate
Field Value
Type |
---|
BpmnEventType |
NonInterruptingStart
Specifies that an event is a NonInterruptingStart event according to BPMN.
Declaration
public const BpmnEventType NonInterruptingStart
Field Value
Type |
---|
BpmnEventType |
Start
Specifies that an event is a Start event according to BPMN.
Declaration
public const BpmnEventType Start
Field Value
Type |
---|
BpmnEventType |
ThrowingIntermediate
Specifies that an event is a ThrowingIntermediate event according to BPMN.
Declaration
public const BpmnEventType ThrowingIntermediate
Field Value
Type |
---|
BpmnEventType |