Class BpmnShapes
The graphical representation of the internal business procedure and communicating the procedures in a standard manner is done using BpmnShapes. The BPMN stands for Business Process Model and Notation.
Inheritance
System.Object
BpmnShapes
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class BpmnShapes : Enum
Remarks
All the BPMN shapes represent the business process. |
The following links can be used in understanding BpmnShapes, |
1. BpmnActivities |
2. BpmnDataObjects |
3. BpmnEvents |
4. BpmnGateways |
5. BpmnMessageFlows |
Examples
<SfDiagram Height="600px" Nodes="@NodeCollection"> </SfDiagram>
@code{
ObservableCollection<DiagramNode> NodeCollection = new ObservableCollection<DiagramNode>()
{
new DiagramNode()
{
OffsetX = 100, OffsetY = 100,
Width = 100, Height = 100,
Shape = new DiagramShape()
{
Type = Shapes.Bpmn,
BpmnShape = BpmnShapes.DataSource
}
}
};
}
Fields
Activity
Sets the Bpmn shape type to Activity and it is represented with a curved corner square-like shape.
Declaration
public const BpmnShapes Activity
Field Value
Type | Description |
---|---|
BpmnShapes |
DataObject
Sets the Bpmn shape type to DataObject.
Declaration
public const BpmnShapes DataObject
Field Value
Type | Description |
---|---|
BpmnShapes |
DataSource
Sets the Bpmn shape type to DataSource.
Declaration
public const BpmnShapes DataSource
Field Value
Type | Description |
---|---|
BpmnShapes |
Event
Sets the Bpmn shape type to Event and it is represented with a circle-like shape.
Declaration
public const BpmnShapes Event
Field Value
Type | Description |
---|---|
BpmnShapes |
Gateway
Sets the Bpmn shape type to Gateway and it is represented with a diamond-like shape.
Declaration
public const BpmnShapes Gateway
Field Value
Type | Description |
---|---|
BpmnShapes |
Group
Sets the Bpmn shape type to Group.
Declaration
public const BpmnShapes Group
Field Value
Type | Description |
---|---|
BpmnShapes |
Message
Sets the Bpmn shape type to Message.
Declaration
public const BpmnShapes Message
Field Value
Type | Description |
---|---|
BpmnShapes |
TextAnnotation
Sets the Bpmn shape type to TextAnnotation.
Declaration
public const BpmnShapes TextAnnotation
Field Value
Type | Description |
---|---|
BpmnShapes |
value__
Declaration
public int value__
Field Value
Type | Description |
---|---|
System.Int32 |