WPHelp Property

Microsoft Word Visual Basic

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