IWinApplicationClass.Help

Syntax

Help: IWinApplicationHelp;

Description

The Help property returns application help settings.

Example

Executing the example requires the Help file C:\Help\Project.chm.

Sub UserProc;
Var
    Help: IWinApplicationHelp;
Begin
    Help := WinApplication.Help;
    Help.FileName := "C:\Help\Project.chm";
    Help.DisplayIndex;
End Sub UserProc;

On executing the example the help file is changed for application. The defined file is also opened in the Index tab.

See also:

IWinApplicationClass