Class BpmnDataObject
Represents the flow of data through the process in the diagram.
Inherited Members
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public class BpmnDataObject : Shape, IDiagramObject, ICloneable
Examples
Node node = new Node()
{
ID = "node1",
Width = 70,
Height = 70,
OffsetX = 100,
OffsetY = 300,
Shape = new BpmnDataObject()
{
DataObjectType = BpmnDataObjectType.Input,
IsCollectiveData = true,
}
};
Constructors
BpmnDataObject()
Initializes a new instance of the BpmnDataObject.
Declaration
public BpmnDataObject()
BpmnDataObject(BpmnDataObject)
Creates a new instance of the BpmnDataObject class.
Declaration
public BpmnDataObject(BpmnDataObject src)
Parameters
Type | Name | Description |
---|---|---|
BpmnDataObject | src | BpmnDataObject |
Properties
DataObjectType
Gets or sets the type of the BPMN data object.
Declaration
public BpmnDataObjectType DataObjectType { get; set; }
Property Value
Type | Description |
---|---|
BpmnDataObjectType | One of the BpmnDataObjectType enumeration that specifies the type infromation in the process. The default type is None. |
IsCollectiveData
Gets or sets the value indicating whether the data object is a collection of information or not.
Declaration
public bool IsCollectiveData { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the Data Object is a collection of informantion; otherwise, false.The default value is false. |
Methods
Clone()
Creates a new BpmnDataObject that is a copy of the current BpmnDataObject.
Declaration
public override object Clone()
Returns
Type | Description |
---|---|
System.Object | it returns BpmnDataObject |
Overrides
Implements
System.ICloneable