Vcl.HtmlHelpViewer.IHtmlHelpTester.CanShowContext

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function CanShowContext(const Context: THelpContext;  const FileName: string): Boolean;

C++

virtual bool __fastcall CanShowContext(const System::Classes::THelpContext Context, const System::UnicodeString FileName) = 0 ;

Properties

Type Visibility Source Unit Parent
function public
Vcl.HtmlHelpViewer.pas
Vcl.HtmlHelpViewer.hpp
Vcl.HtmlHelpViewer IHtmlHelpTester


Description

Queries whether the Help System can show the help topic, which is specified by the context identifier and which is located in the specified help file.

CanShowContext returns True if the Help System can show the help topic, which is specified by the Context context identifier and which is located in the specified FileName help file. Otherwise, CanShowContext returns False.

VCL does not provide an implementation of the IHtmlHelpTester interface. Therefore, if you need to use this function, you must implement IHtmlHelpTester in your application.

The THtmlHelpViewer class, implemented in the implementation section of the Vcl.HtmlHelpViewer unit, uses CanShowContext in the THtmlHelpViewer.UnderstandsContext function. THtmlHelpViewer.UnderstandsContext implements the System.HelpIntfs.IExtendedHelpViewer.UnderstandsContext function when you specify the Vcl.HtmlHelpViewer unit in the uses section of your program.

See Also