Class UmlActivityShapes
The UML activity diagram is a flowchart that represents the flow from one activity to another. It describes the activity flow of a system, and the parallel flow of a system.
Inheritance
System.Object
UmlActivityShapes
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class UmlActivityShapes : Enum
Examples
<SfDiagram Height="600px" Nodes="@NodeCollection">
</SfDiagram>
@code{
//Defines diagram's connector collection
public ObservableCollection<DiagramNode> NodeCollection { get; set; }
public DiagramConstraints diagramConstraints = DiagramConstraints.Default;
protected override void OnInitialized()
{
NodeCollection = new ObservableCollection<DiagramNode>();
DiagramNode node = new DiagramNode()
{
Width = 100,
Height = 100,
OffsetX = 200,
OffsetY = 200,
Shape = new DiagramShape()
{
Type = Syncfusion.Blazor.Diagrams.Shapes.UmlActivity,
//Define UmlActivity shape
UmlActivityShape = UmlActivityShapes.Action
}
};
NodeCollection.Add(node);
}
}
Fields
AcceptingEvent
Sets the type of UMLActivity to AcceptingEvent.
Declaration
public const UmlActivityShapes AcceptingEvent
Field Value
Action
Sets the type of UMLActivity to Action and it has a rounded corner square shape.
Declaration
public const UmlActivityShapes Action
Field Value
Decision
Sets the type of UMLActivity to Decision and it has a diamond-like shape.
Declaration
public const UmlActivityShapes Decision
Field Value
FinalNode
Sets the type of UMLActivity to FinalNode.
Declaration
public const UmlActivityShapes FinalNode
Field Value
ForkNode
Sets the type of UMLActivity to ForkNode.
Declaration
public const UmlActivityShapes ForkNode
Field Value
InitialNode
Sets the type of UMLActivity to InitialNode.
Declaration
public const UmlActivityShapes InitialNode
Field Value
JoinNode
Sets the type of UMLActivity to JoinNode.
Declaration
public const UmlActivityShapes JoinNode
Field Value
MergeNode
Sets the type of UMLActivity to MergeNode.
Declaration
public const UmlActivityShapes MergeNode
Field Value
Note
Sets the type of UMLActivity to Note.
Declaration
public const UmlActivityShapes Note
Field Value
ReceiveSignal
Sets the type of UMLActivity to RecieveSignal.
Declaration
public const UmlActivityShapes ReceiveSignal
Field Value
SendSignal
Sets the type of UMLActivity to SendSignal.
Declaration
public const UmlActivityShapes SendSignal
Field Value
StructuredNode
Sets the type of UMLActivity to StructuredNode and has a square shape.
Declaration
public const UmlActivityShapes StructuredNode
Field Value
TimeEvent
Sets the type of UMLActivity to TimeEvent.
Declaration
public const UmlActivityShapes TimeEvent
Field Value
value__
Declaration
Field Value
Type |
Description |
System.Int32 |
|