Share via


Options.AutoSelectWord Property

Publisher Developer Reference

True for Microsoft Office Publisher to automatically select the entire word when selecting text. Read/write Boolean.

Syntax

expression.AutoSelectWord

expression   A variable that represents an Options object.

Return Value
Boolean

Example

This example sets Publisher global options, including enabling automatically selecting an entire word when selecting text.

Visual Basic for Applications
  Sub SetGlobalOptions()
    With Options
        .AutoFormatWord = True
        .AutoKeyboardSwitching = True
        .AutoSelectWord = True
        .DragAndDropText = True
        .UseCatalogAtStartup = False
        .UseHelpfulMousePointers = False
    End With
End Sub

See Also