Class BpmnDataStore
Represents the storing or access of data associated with business processs.
Inherited Members
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public class BpmnDataStore : Shape, IDiagramObject, ICloneable
Examples
Node node = new Node()
{
ID = "node1",
Width = 70,
Height = 70,
OffsetX = 100,
OffsetY = 300,
Shape = new BpmnDataStore()
};
Constructors
BpmnDataStore()
Initializes a new instance of the BpmnDataStore class.
Declaration
public BpmnDataStore()
Methods
Clone()
Creates a new BpmnDataStore that is a copy of the current BpmnDataStore.
Declaration
public override object Clone()
Returns
Type | Description |
---|---|
System.Object | it returns BpmnDataStore |
Overrides
Implements
System.ICloneable