WPHelp Property

Microsoft Word Visual Basic

WPHelp Property

       

True if pressing Microsoft Word key combinations that produce actions in WordPerfect displays dialog boxes that describe how to perform the equivalent actions in Word. Read/write Boolean.

expression.WPHelp

expression   Required. An expression that returns an Options object.

Example

This example toggles WordPerfect help between True and False.

Sub WPHelpToggle()
    Options.WPHelp = Not Options.WPHelp
End Sub

This example displays the status of the Help for WordPerfect users option on the General tab in the Options dialog box (Tools menu).

Sub WPHelpStatus()
    Msgbox Options.WPHelp
End Sub