Enum FixedUserHandleAlignment
Represents the alignment of the FixedUserHandle with respect to its immediate parent.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum FixedUserHandleAlignment
Examples
Connector connector = new Connector()
{
FixedUserHandles = new DiagramObjectCollection<ConnectorFixedUserHandle>()
{
new ConnectorFixedUserHandle()
{
Alignment = FixedUserHandleAlignment.After,
}
},
};
Fields
| Name | Description |
|---|---|
| After | Aligns the FixedUserHandle at the bottom of a connector segment. |
| Before | Aligns the FixedUserHandle on top of a connector segment. |
| Center | Aligns the FixedUserHandle on the connector segment. |