Class BpmnFlowType
Specifies the type of BpmnFlow.
Inheritance
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class BpmnFlowType : Enum
Examples
Connector connector4 = new Connector()
{
Type = ConnectorSegmentType.Straight,
Shape = new BpmnFlow()
{
FlowType = BpmnFlowType.SequenceFlow,
}
};
Fields
AssociationFlow
Specifies relationship between artifacts and flow objects. This is represented as a dotted line.
Declaration
public const BpmnFlowType AssociationFlow
Field Value
Type |
---|
BpmnFlowType |
BiDirectionalAssociationFlow
Specifies with data objects to show that there are both input and output from an activity. This is represented as a dotted line with an arrow at both ends.
Declaration
public const BpmnFlowType BiDirectionalAssociationFlow
Field Value
Type |
---|
BpmnFlowType |
ConditionalSequenceFlow
Specifies the flow of a process based on certain conditions. It is indicated by a diamond at the beginning of the sequence.
Declaration
public const BpmnFlowType ConditionalSequenceFlow
Field Value
Type |
---|
BpmnFlowType |
DefaultSequenceFlow
Specifies the default sequence flow when other conditional flows are not valid. It is indicated by a backslash at the beginning of the sequence.
Declaration
public const BpmnFlowType DefaultSequenceFlow
Field Value
Type |
---|
BpmnFlowType |
DirectionalAssociationFlow
Specifies with data objects to show that there are either an input or output from an activity. This is represented as a dotted line with an arrow at one end.
Declaration
public const BpmnFlowType DirectionalAssociationFlow
Field Value
Type |
---|
BpmnFlowType |
InitiatingMessageFlow
Specifies an activity or event in one pool which can initiate a message to another pool.
Declaration
public const BpmnFlowType InitiatingMessageFlow
Field Value
Type |
---|
BpmnFlowType |
MessageFlow
Specifies the flow of messages between two participants.
Declaration
public const BpmnFlowType MessageFlow
Field Value
Type |
---|
BpmnFlowType |
NonInitiatingMessageFlow
Specifies an activity or event in one pool which can’t initiate a message to another pool.
Declaration
public const BpmnFlowType NonInitiatingMessageFlow
Field Value
Type |
---|
BpmnFlowType |
SequenceFlow
Specifies the typical path between two flow objects.
Declaration
public const BpmnFlowType SequenceFlow
Field Value
Type |
---|
BpmnFlowType |