Class BpmnGateway
Represents the control as well as merge and split the process flow in the diagram.
Inherited Members
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
Implements
System.ICloneable