Blazor

Code Examples Upgrade Guide User Guide Demos Support Forums Download
  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class BpmnEvents

    Show / Hide Table of Contents

    Class BpmnEvents

    A common BPMN process model element that represents some happening during a business process is an Event.

    Inheritance
    System.Object
    BpmnEvents
    Namespace: Syncfusion.Blazor.Diagrams
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public sealed class BpmnEvents : Enum
    Remarks

    The below code snippet is an example to set the BpmnEvents,.

    Examples
    <SfDiagram Height="600px" Nodes="@NodeCollection">
       <DiagramSnapSettings Constraints = "@SnapConstraints.None" ></ DiagramSnapSettings >
    </ SfDiagram >
    @code{
       ObservableCollection<DiagramNode> NodeCollection = new ObservableCollection<DiagramNode>()
       {
           new DiagramNode()
           {`
               OffsetX = 100, OffsetY = 100,
               Width = 100, Height = 100,
               Shape = new DiagramShape()
               {
                   ///Sets type to Bpmn and shape to Event
                   Type = Shapes.Bpmn, BpmnShape = BpmnShapes.Event,
                   /// Set the event type to NonInterruptingIntermediate
                   Event = new DiagramBpmnEvent() { Event = BpmnEvents.NonInterruptingIntermediate }
               }
           }
       };
    }

    Fields

    End

    Indicates the beginning of the process and every business process ends with an event.

    Declaration
    public const BpmnEvents End
    Field Value
    Type Description
    BpmnEvents

    Intermediate

    Indicates the ongoing stage (Middle � after starting and before ending) of the process.

    Declaration
    public const BpmnEvents Intermediate
    Field Value
    Type Description
    BpmnEvents

    NonInterruptingIntermediate

    Sets the type of the BPMN Event as NonInterruptingIntermediate.

    Declaration
    public const BpmnEvents NonInterruptingIntermediate
    Field Value
    Type Description
    BpmnEvents

    NonInterruptingStart

    Sets the type of the BPMN Event as NonInterruptingStart.

    Declaration
    public const BpmnEvents NonInterruptingStart
    Field Value
    Type Description
    BpmnEvents

    Start

    Indicates the beginning of the process and every business process starts with an event.

    Declaration
    public const BpmnEvents Start
    Field Value
    Type Description
    BpmnEvents

    ThrowingIntermediate

    Sets the type of the BPMN Event as ThrowingIntermediate.

    Declaration
    public const BpmnEvents ThrowingIntermediate
    Field Value
    Type Description
    BpmnEvents

    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