Class BpmnAssociationFlows
The Association is used to link flow objects. It is denoted by a dotted line representation.
Inheritance
System.Object
BpmnAssociationFlows
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class BpmnAssociationFlows : Enum
Remarks
By default, the Association flow is set to default. |
The below links might be useful in understanding BpmnAssociationFlows, |
1. BpmnFlows |
Examples
<SfDiagram Height="600px" Connectors="@ConnectorCollection">
</SfDiagram>
@code{
ObservableCollection<DiagramConnector> ConnectorCollection = new ObservableCollection<DiagramConnector>()
{
new DiagramConnector()
{
SourcePoint=new ConnectorSourcePoint(){X=100,Y=200},
TargetPoint=new ConnectorTargetPoint(){X=300,Y=200},
///Sets the type to Bpmn, flow to Association and association to bidirectional
Shape=new DiagramConnectorShape()
{
Type=ConnectionShapes.Bpmn,
BpmnFlow=BpmnFlows.Association,
Association=BpmnAssociationFlows.BiDirectional
}
}
};
}
Fields
BiDirectional
Sets the Association flow to Bidirectional. This flow is represented with a source and a target decorator from which it gets its name.
Declaration
public const BpmnAssociationFlows BiDirectional
Field Value
Type | Description |
---|---|
BpmnAssociationFlows |
Default
Sets the Association flow to Default.
Declaration
public const BpmnAssociationFlows Default
Field Value
Type | Description |
---|---|
BpmnAssociationFlows |
Directional
Sets the Association flow to directional and it is single directional.
Declaration
public const BpmnAssociationFlows Directional
Field Value
Type | Description |
---|---|
BpmnAssociationFlows |
value__
Declaration
public int value__
Field Value
Type | Description |
---|---|
System.Int32 |