Search
AdjustmentHandles Enumeration
See Also
 





Identifies the distinct selection handles of a node.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public enum AdjustmentHandles

Visual Basic  Copy Code

Public Enum AdjustmentHandles

 Members

  Member name Description

None

Specifies that none of the selection handles can be used to modify the node.

ResizeTopLeft

The top-left handle is enabled and can be used to resize the node.

ResizeTopRight

The top-right handle is enabled and can be used to resize the node.

ResizeBottomRight

The bottom-right handle is enabled and can be used to resize the node.

ResizeBottomLeft

The bottom-left handle is enabled and can be used to resize the node.

ResizeTopCenter

The top-center handle is enabled and can be used to resize the node vertically.

TopHandles

The top-left, top-center and top-right handles are enabled.

ResizeMiddleRight

The middle-right handle is enabled and can be used to resize the node horizontally.

RightHandles

The top-right, bottom-right and middle-right handles are enabled.

ResizeBottomCenter

The bottom-center handle is enabled and can be used to resize the node vertically.

BottomHandles

The bottom-left, bottom-center and bottom-right handles are enabled.

ResizeMiddleLeft

The middle-left handle is enabled and can be used to resize the node horizontally.

LeftHandles

The top-left, middle-left and bottom-left handles are enabled.

Move

The center selection handle is enabled and can be used to move the node.

Rotate

The rotation handle is enabled and can be used to rotate the node.

All

All selection handles are enabled and can be used to modify the node.

 Remarks

A combination of these flags can be assigned to the EnabledHandles property of nodes.

 See Also