IBX.IBInstall.TIBSetupOnWarning

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TIBSetupOnWarning = function(Sender :TObject; WarningCode: TIscError;
WarningMessage : string): TWarningResult of object;

C++

typedef TWarningResult __fastcall (__closure *TIBSetupOnWarning)(System::TObject* Sender, int WarningCode, System::UnicodeString WarningMessage);

Properties

Type Visibility Source Unit Parent
type
typedef
public
IBX.IBInstall.pas
IBX.IBInstall.hpp
IBX.IBInstall IBX.IBInstall

Description

TIBSetupOnWarning is the type of event handlers that respond to installation warnings.

Sender is the TIBSetup component that encounters the warning.

WarningCode is the warning code for the situation that was encounted.

WarningMessage is the warning message for the situation that occurred.

The event handler must return either isc_fp_install_continue or isc_install_abort.