The DragMove
field is a member of the Editor.CursorShape
enumeration. It represents a cursor shape that indicates a drag-and-drop operation where the item being dragged will be moved to a new location.
The DragMove
field is a member of the Editor.CursorShape
enumeration. It represents a cursor shape that indicates a drag-and-drop operation where the item being dragged will be moved to a new location.
Use Editor.CursorShape.DragMove
when you want to change the cursor to indicate that a drag-and-drop operation will result in moving the item. This is typically used in user interfaces where items can be rearranged or moved between different containers.
// Example of setting the cursor shape to DragMove Cursor.SetCursorShape(Editor.CursorShape.DragMove);