FireDAC.Comp.Script.TFDScriptOptions.LineSize

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

property LineSize: Integer read FLineSize write FLineSize default 0;

C++

__property int LineSize = {read=FLineSize, write=FLineSize, default=0};

Description

Specifies the maximum line width.

Set LineSize to the maximum number of characters per console line. When the script engine outputs longer lines, it is splitted into few lines, each of LineSize characters long. The default value is 0 (do not split). 

The property can be set from a script using the SET LINEsize <value> command.

See Also