CWinApp::m_eHelpType

 

The type of this data member is the enumerated type AFX_HELP_TYPE, which is defined within the CWinApp class.

Syntax

AFX_HELP_TYPE m_eHelpType;

Remarks

The AFX_HELP_TYPE enumeration is defined as follows:

enum AFX_HELP_TYPE

{

afxWinHelp = 0,

afxHTMLHelp = 1

};

  • To set the application's help to HTML Help, call SetHelpMode and specify afxHTMLHelp.

  • To set the application's help to WinHelp, call SetHelpMode and specify afxWinHelp.

Requirements

Header: afxwin.h

See Also

CWinApp Class
Hierarchy Chart
CWinApp::GetHelpMode
CWinApp::EnableHtmlHelp