Blazor

Upgrade Guide User Guide Demos Support Forums Download
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class BpmnBoundary - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class BpmnBoundary

    The boundary represents the type of task that is being processed. The boundary property of subprocess allows you to define the type of boundary.

    Inheritance
    System.Object
    BpmnBoundary
    Namespace: Syncfusion.Blazor.Diagrams
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public sealed class BpmnBoundary : Enum
    Remarks
    By default, BpmnBoundary is set to Default.
    Examples
    <SfDiagram Height="600px" Nodes="@NodeCollection">
    </SfDiagram>
    @code{
    ObservableCollection<DiagramNode> NodeCollection = new ObservableCollection<DiagramNode>()
    {
           new DiagramNode()
           {
               OffsetX = 100, OffsetY = 100, Width = 100, Height = 100,
               Shape = new DiagramShape()
               {
                   Type = Shapes.Bpmn, BpmnShape = BpmnShapes.Activity,
                   Activity = new DiagramBpmnActivity()
                   {
                       Activity = BpmnActivities.SubProcess,
                       ///Sets collapsed to true and boundary to Call
                       SubProcess = new DiagramBpmnSubProcess()
                       {
                           Collapsed = true,
                           Boundary = BpmnBoundary.Call
                       },
                   }
               }
           },
       };
    }

    Fields

    Call

    Sets the boundary to Call and it is represented with a bolder layout.

    Declaration
    public const BpmnBoundary Call
    Field Value
    Type Description
    BpmnBoundary

    Default

    Sets the boundary to Default.

    Declaration
    public const BpmnBoundary Default
    Field Value
    Type Description
    BpmnBoundary

    Event

    Sets the boundary to Event and it is represented with a dotted layout.

    Declaration
    public const BpmnBoundary Event
    Field Value
    Type Description
    BpmnBoundary

    value__

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