PropertyPage.GetPageInfo method (Outlook)

Returns Help information about a custom property page.

Syntax

expression. GetPageInfo( _HelpFile_ , _HelpContext_ )

expression A variable that represents a PropertyPage object.

Parameters

Name Required/Optional Data type Description
HelpFile Required String Specifies the Help file associated with the property page.
HelpContext Required Long Specifies the context ID of the Help topic associated with the property page.

Return value

An HRESULT value that represents the result of the method.

Example

This Microsoft Visual Basic for Applications (VBA) example returns the name of the Help file and the context ID of the topic to be displayed.

Private Sub PropertyPage_GetPageInfo(HelpFile As String, HelpContext As Long) 
 HelpFile = "ProjPage.chm" 
 HelpContext = IDH_PageInfo 
End Sub

See also

PropertyPage Object

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.