FireDAC.Comp.Script.TFDScriptOptions.ConsoleOutput
| [–] Properties | |
|---|---|
| Type: property | |
| Visibility: published | |
| Source: FireDAC.Comp.Script.pas FireDAC.Comp.Script.hpp
| |
| Unit: FireDAC.Comp.Script | |
| Parent: TFDScriptOptions | |
Delphi
property ConsoleOutput: Boolean read FConsoleOutput write FConsoleOutput default True;
C++
__property bool ConsoleOutput = {read=FConsoleOutput, write=FConsoleOutput, default=1};
Description
Controls the script engine output to a console.
Set the ConsoleOutput property to True to enable the script engine output to a console. The default value is True. The output is provided through the script dialog, if it is attached to the ScriptDialog, and/or the OnConsolePut event handler.
The property can be set from a script using the SET (TERMOUT | CONSOLE) ON|OFF command.