FireDAC.Comp.Script.TFDScript.OnConsolePut

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: event
Visibility: published
Source:
FireDAC.Comp.Script.pas
FireDAC.Comp.Script.hpp
Unit: FireDAC.Comp.Script
Parent: TFDScript

Delphi

property OnConsolePut: TFDConsolePutEvent read FOnConsolePut write FOnConsolePut;

C++

__property TFDConsolePutEvent OnConsolePut = {read=FOnConsolePut, write=FOnConsolePut};

Description

The event allows you to produce an end-user output.

Use the OnConsolePut event to produce an end-user output.

  • AMessage - a message output to the end-user.
  • AKind - the output message kind.

If ScriptDialog is specified, then it shows an end-user output, additionally to the OnConsolePut event handler.

See Also