Class BpmnMessage
Represents the transferring of information into or out of an Activity in the diagram as part of the BPMN shapes.
Inherited Members
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public class BpmnMessage : Shape, IDiagramObject, ICloneable
Remarks
The BpmnMessage shape is used to depict message flows in a business process model.
It is a component of BPMN used to illustrate communication between two participants within a business process.
Examples
Node node = new Node()
{
ID = "node1",
Width = 70,
Height = 70,
OffsetX = 100,
OffsetY = 300,
Shape = new BpmnMessage()
};
Constructors
BpmnMessage()
Initializes a new instance of the BpmnMessage class.
Declaration
public BpmnMessage()
Methods
Clone()
Creates a new BpmnMessage object that is a copy of the current BpmnMessage object.
Declaration
public override object Clone()
Returns
Type |
---|
System.Object |
Overrides
Implements
System.ICloneable