menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class BpmnSequenceFlows - API Reference

    Show / Hide Table of Contents

    Class BpmnSequenceFlows

    A Sequence flow represents the order of the activities performed in a BPMN process. It is represented by a solid graphical line.

    Inheritance
    System.Object
    BpmnSequenceFlows
    Namespace: Syncfusion.Blazor.Diagrams
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public sealed class BpmnSequenceFlows : Enum
    Remarks
    By default, the BpmnSequenceFlow is set to Default.
    The following links might be useful in understanding BpmnSequenceFlows
    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 type to Bpmn, flow to Sequence, and sequence to Conditional
               Shape=new DiagramConnectorShape()
               {
                   Type=ConnectionShapes.Bpmn,
                   BpmnFlow=BpmnFlows.Sequence,
                   Sequence=BpmnSequenceFlows.Conditional
               }
           }
       };
    }

    Fields

    Conditional

    Sets Sequence flow to Conditional and it has a diamond-like shape in the source point.

    Declaration
    public const BpmnSequenceFlows Conditional
    Field Value
    Type Description
    BpmnSequenceFlows

    Default

    Sets Sequence flow to Default and it has a small crossover line over the flow.

    Declaration
    public const BpmnSequenceFlows Default
    Field Value
    Type Description
    BpmnSequenceFlows

    Normal

    Sets Sequence flow to Normal.

    Declaration
    public const BpmnSequenceFlows Normal
    Field Value
    Type Description
    BpmnSequenceFlows

    value__

    Declaration
    public int value__
    Field Value
    Type Description
    System.Int32
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved