menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class BpmnFlow - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class BpmnFlow

    Represents the elements that are connected together to form a complete process flow in the diagram.

    Inheritance
    System.Object
    DiagramObject
    ConnectorShape
    BpmnFlow
    Implements
    IDiagramObject
    System.ICloneable
    Inherited Members
    DiagramObject.GetParent()
    DiagramObject.OnPropertyChanged(String, Object, Object, IDiagramObject)
    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()

    Creates a new BpmnFlow that is a copy of the BpmnFlow BpmnFlow.

    Declaration
    public override object Clone()
    Returns
    Type Description
    System.Object

    it reurns BpmnFlow

    Overrides
    ConnectorShape.Clone()

    Implements

    IDiagramObject
    System.ICloneable
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved