Enum AlignmentOptions
Defines how the selected objects should be positioned.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum AlignmentOptions
Examples
private void OnAlignLeft()
{
diagram.SetAlign(AlignmentOptions.Left,null, AlignmentMode.Object);
}
Fields
| Name | Description |
|---|---|
| Bottom | Aligns all the selected objects at the bottom of the selection boundary. |
| Center | Aligns all the selected objects at the center of the selection boundary. |
| Left | Aligns all the selected objects to the left of the selection boundary. |
| Middle | Aligns all the selected objects at the middle of the selection boundary. |
| Right | Aligns all the selected objects to the right of the selection boundary. |
| Top | Aligns all the selected objects at the top of the selection boundary. |