System.Classes.THelpType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

THelpType = (htKeyword, htContext);

C++

enum DECLSPEC_DENUM THelpType : unsigned char { htKeyword, htContext };

Properties

Type Visibility Source Unit Parent
enum public
System.Classes.pas
System.Classes.hpp
System.Classes System.Classes

Description

THelpType indicates whether components invoke the help system using a context ID or a keyword.

These are the possible values of the THelpType type.

Value Meaning

htKeyword

Help topics are identified by a string keyword. The HelpKeyword property is used to identify help topics. This mechanism is available for all help systems.

htContext

Help topics are identified by an integer context ID. The HelpContext property is used to identify help topics. This mechanism is not available for all help systems, but is typically faster for those systems that support it.

See Also