UseHelpfulMousePointers Property

Microsoft Publisher Visual Basic

expression.UseHelpfulMousePointers

expression    Required. An expression that returns one of the objects in the Applies To list.

Example

This example sets global options for Microsoft Publisher, including disabling the display of helpful mouse pointers.

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