Enum SelectorConstraints
Enables or disables certain behaviors and features of the selector.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
[Flags]
public enum SelectorConstraints
Examples
<SfDiagramComponent />
@code
{
diagram.SelectionSettings.Constraints |= SelectorConstraints.ResizeAll;
}
Fields
| Name | Description |
|---|---|
| All | Enables or disables all handles of the selector. |
| ConnectorSourceThumb | Enables or disables the source thumb of the connector. |
| ConnectorTargetThumb | Enables or disables the target thumb of the connector. |
| None | Hides all the selector elements. |
| ResizeAll | Enables or disables all resize handles of the selector. |
| ResizeEast | Enables or disables the middle right resize handle of the selector. |
| ResizeNorth | Enables or disables the top center resize handle of the selector. |
| ResizeNorthEast | Enables or disables the top right resize handle of the selector. |
| ResizeNorthWest | Enables or disables the top left resize handle of the selector. |
| ResizeSouth | Enables or disables the bottom center resize handle of the selector. |
| ResizeSouthEast | Enables or disables the bottom right resize handle of the selector. |
| ResizeSouthWest | Enables or disables the bottom left resize handle of the selector. |
| ResizeWest | Enables or disables the middle left resize handle of the selector. |
| Rotate | Enables or disables the rotate handle of the selector. |
| Tooltip | Enables or disables the tooltip for drag, resize and rotate operation of nodes and connectors. |
| UserHandle | Enables or disables the user handles of the selector . |