Application.Assistance property (Project)

Gets an Office.IAssistance object that represents the Project Help system. Read-only IAssistance.

Syntax

expression.Assistance

expression A variable that represents an Application object.

Remarks

For more information, see the IAssistance object in the Microsoft Office Visual Basic Reference.

Example

The following example displays the top-level page of the Project Help window.

Sub ShowHelp()
    Dim theHelpSystem As Office.IAssistance
    
    Set theHelpSystem = Application.Assistance
    
    theHelpSystem.ShowHelp
End Sub

Property value

*<unknown type>*

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.