menu

Blazor

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

    Show / Hide Table of Contents

    Class BpmnGateway

    Represents the control as well as merge and split the process flow in the diagram.

    Inheritance
    System.Object
    DiagramObject
    Shape
    BpmnGateway
    Implements
    IDiagramObject
    System.ICloneable
    Inherited Members
    DiagramObject.GetParent()
    DiagramObject.OnPropertyChanged(String, Object, Object, IDiagramObject)
    Shape.Type
    Namespace: Syncfusion.Blazor.Diagram
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class BpmnGateway : Shape, IDiagramObject, ICloneable
    Examples
    Node node = new Node()
    {
        ID = "node1",          
        Width = 70,
        Height = 70, 
        OffsetX = 100,
        OffsetY = 300,
        Shape = new BpmnGateway() 
        { 
            GatewayType = BpmnGatewayType.None
        }
    };

    Constructors

    BpmnGateway()

    Initializes a new instance of the BpmnGateway.

    Declaration
    public BpmnGateway()

    BpmnGateway(BpmnGateway)

    Creates a new instance of the BpmnGateway class.

    Declaration
    public BpmnGateway(BpmnGateway src)
    Parameters
    Type Name Description
    BpmnGateway src

    BpmnGateway

    Properties

    GatewayType

    Gets or sets the type of the BPMN Gateway.

    Declaration
    public BpmnGatewayType GatewayType { get; set; }
    Property Value
    Type Description
    BpmnGatewayType

    One of the BpmnGatewayType enumeration that specifies the type of Controls imposed in the flow of process. The default type is None.

    Methods

    Clone()

    Creates a new BpmnGateway that is a copy of the current BpmnGateway.

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

    it returns BpmnGateway

    Overrides
    Shape.Clone()

    Implements

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