Options.VisualSelection Property

Word Developer Reference

Returns or sets the selection behavior based on visual cursor movement in a right-to-left language document. Read/write WdVisualSelection.

Syntax

expression.VisualSelection

expression   Required. A variable that represents an Options collection.

Remarks

The CursorMovement property must be set to wdCursorMovementVisual to use this property.

Example

This example sets the selection behavior so that the selection wraps from line to line.

Visual Basic for Applications
  If Options.CursorMovement = wdCursorMovementVisual Then _
    Options.VisualSelection = wdVisualSelectionContinuous

See Also