Class FixedUserHandleAlignment
Represents the alignment of the FixedUserHandle with respect to its immediate parent.
Inheritance
System.Object
FixedUserHandleAlignment
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class FixedUserHandleAlignment : Enum
Examples
Connector connector = new Connector()
{
FixedUserHandles = new DiagramObjectCollection<ConnectorFixedUserHandle>()
{
new ConnectorFixedUserHandle()
{
Alignment = FixedUserHandleAlignment.After,
}
},
};
Fields
After
Aligns the FixedUserHandle at the bottom of a connector segment.
Declaration
public const FixedUserHandleAlignment After
Field Value
Type |
---|
FixedUserHandleAlignment |
Before
Aligns the FixedUserHandle on top of a connector segment.
Declaration
public const FixedUserHandleAlignment Before
Field Value
Type |
---|
FixedUserHandleAlignment |
Center
Aligns the FixedUserHandle on the connector segment.
Declaration
public const FixedUserHandleAlignment Center
Field Value
Type |
---|
FixedUserHandleAlignment |