CursorShape DragCopy

robot_2Generated
code_blocksInput

Description

The DragCopy 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 copied to the new location. This cursor shape is typically used in graphical user interfaces to provide visual feedback to the user that a copy operation is being performed.

Usage

Use the Editor.CursorShape.DragCopy field when you need to set the cursor to indicate a drag-and-drop copy operation. This is useful in scenarios where you want to provide a visual cue to users that the item they are dragging will be duplicated at the drop location.

Example

// Example of setting the cursor shape to DragCopy
Cursor.SetCursorShape(Editor.CursorShape.DragCopy);