IWinApplicationClass.Help

Syntax

Help: IWinApplicationHelp;

Description

The Help property returns application help settings.

Fore 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.

Fore.NET Example

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

Imports Prognoz.Platform.Interop.Ui;

Sub UserProc();
Var
    WinAppCls: WinApplicationClass = New WinApplicationClassClass();
    Help: IWinApplicationHelp;
Begin
    Help := WinAppCls.Help;
    Help.FileName := "C:\Help\Project.chm";
    Help.DisplayIndex("");
End Sub;

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

See also:

IWinApplicationClass