The Editor.CursorShape.Cross
field is a member of the Editor.CursorShape
enumeration. It represents a cursor shape that resembles a cross, typically used to indicate a precise selection or targeting action within the editor environment.
The Editor.CursorShape.Cross
field is a member of the Editor.CursorShape
enumeration. It represents a cursor shape that resembles a cross, typically used to indicate a precise selection or targeting action within the editor environment.
To use the Editor.CursorShape.Cross
field, you can assign it to a cursor property or method that accepts a CursorShape
value. This will change the cursor to a cross shape, which can be useful for tasks that require precision, such as selecting a specific point or drawing lines.
// Example of setting the cursor shape to Cross in an editor context Editor.SetCursorShape(Editor.CursorShape.Cross);