Cursor Property
Applies To
System object.
Description
Returns or sets the state (shape) of the pointer. Can be one of the following WdCursorType constants: wdCursorIBeam, wdCursorNormal, wdCursorNorthwestArrow, or wdCursorWait. Read/write Long.
See Also
Magnifier property.
Example
This example prints a message on the status bar and changes the pointer to a busy pointer.
StatusBar = "Please wait..."
For i = 1 To 1000
System.Cursor = wdCursorWait
Next i
StatusBar = "Task completed"
System.Cursor = wdCursorNormal