Options.AutoSelectWord property (Publisher)
True for Microsoft 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.
Sub SetGlobalOptions()
With Options
.AutoFormatWord = True
.AutoKeyboardSwitching = True
.AutoSelectWord = True
.DragAndDropText = True
.UseCatalogAtStartup = False
.UseHelpfulMousePointers = False
End With
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.