Class BpmnFlow
Represents the elements that are connected together to form a complete process flow in the diagram.
Inherited Members
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public class BpmnFlow : ConnectorShape, IDiagramObject, ICloneable
Examples
Connector connector = new Connector()
{
ID = "connector1",
SourcePoint = new DiagramPoint() { X = 100, Y = 100 },
TargetPoint = new DiagramPoint() { X = 300, Y = 200 },
Type = ConnectorSegmentType.Straight,
Shape = new BpmnFlow()
{
Type = ConnectorShapes.Bpmn,
Flow = BpmnFlowType.SequenceFlow,
}
}
Constructors
BpmnFlow()
Initializes a new instance of the BpmnFlow.
Declaration
public BpmnFlow()
BpmnFlow(BpmnFlow)
Creates a new instance of the BpmnFlow class.
Declaration
public BpmnFlow(BpmnFlow src)
Parameters
Type | Name | Description |
---|---|---|
BpmnFlow | src | BpmnFlow |
Properties
Flow
Gets or Sets the type of the Bpmn flows.
Declaration
public BpmnFlowType Flow { get; set; }
Property Value
Type | Description |
---|---|
BpmnFlowType | One of the BpmnFlowType enumeration that specifies the type of flow in process. The default type is SequenceFlow. |
Methods
Clone()
Declaration
public override object Clone()
Returns
Type | Description |
---|---|
System.Object | it reurns BpmnFlow |
Overrides
Implements
System.ICloneable