Application.CursorMovement Property

Excel Developer Reference

Returns or sets a value that indicates whether a visual cursor or a logical cursor is used. Can be one of the following constants: xlVisualCursor or xlLogicalCursor. Read/write Long.

Syntax

expression.CursorMovement

expression   A variable that represents an Application object.

Remarks

These constants may not be available to you, depending on the language support (U.S. English, for example) that you’ve selected or installed.

Example

This example sets Microsoft Excel to use the visual cursor.

Visual Basic for Applications
  Application.CursorMovement = xlVisualCursor

See Also