Enum TextAnnotationDirection
Specifies the directions of the BpmnTextAnnotation from its target.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum TextAnnotationDirection
Examples
Node node = new Node()
{
Shape = new BpmnTextAnnotation()
{
TextAnnotationTarget = TextAnnotationTarget.Auto,
TextAnnotationTarget = "node2"
}
};
Fields
| Name | Description |
|---|---|
| Auto | Specifies the direction as auto to switch the direction based on the connector position. |
| Bottom | Specifies the direction as bottom when the absolute angle as 90 degree. |
| Left | Specifies the direction as left when the absolute angle as 180 degree. |
| Right | Specifies the direction as right when the absolute angle as 0 degree. |
| Top | Specifies the direction as top when the absolute angle as 270 degree or -90dDegree. |