System.SysUtils.Exception.CreateFmtHelp

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor CreateFmtHelp(const Msg: string; const Args: array of const;  AHelpContext: Integer);

Properties

Type Visibility Source Unit Parent
constructor public System.SysUtils.pas System.SysUtils Exception

Description

Instantiates an instance of an exception with a formatted message string and a help-context ID.

Call CreateFmtHelp to construct an exception with a formatted message string and a help context ID. Msg is a string constant containing format specifiers to be replaced with values from Args. Args is an array of constants containing values to format according to format specifiers in Msg, and insert into Msg. CreateFmt calls the Format function to transform Msg with the values in Arg.

AHelpContext is an integer that specifies the context-sensitive help ID for the exception.

See Also