FireDAC.Comp.Script.TFDScriptOptions.MaxStringWidth

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 MaxStringWidth: Integer read FMaxBytesToPrintLongs write FMaxBytesToPrintLongs default 80;

C++

__property int MaxStringWidth = {read=FMaxBytesToPrintLongs, write=FMaxBytesToPrintLongs, default=80};

Description

Specifies the maximum size of the string field value.

Set MaxStringWidth to the maximum number of characters per string field value. When the script engine outputs a longer field value, this is trimmed to the value specified by the property MaxStringWidth. The default value is 80 characters. 

The property can be set from a script using the SET (LONG | WIDTH) <value> command.

See Also