Enum BpmnDataObjectType
Specifies the type of BpmnDataObject.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum BpmnDataObjectType
Examples
Node node = new Node()
{
Shape = new BpmnDataObject()
{
DataObjectType = BpmnDataObjectType.Input,
IsCollectiveData = true,
}
};
Fields
| Name | Description |
|---|---|
| Input | Specifies the input type of data. |
| None | Specifies the general type of data. |
| Output | Specifies the output type of data. |