Base class for all textarea components.
Description
TFCustomTextArea is base class for all components, that will generate a text area (momo, multiline text) in t he HTML document.Do not create instance of TFCustomEdit .
AutoName
Delphi declarationCOLS
property AutoName;
C++ declaration
__property AutoName
DataSourceDelphi declaration
property COLS: Integer read GetCols write SetCols default 40;
C++ declaration
__property int COLS={ read=GetCols, write=SetCols, default=40 }
Description
Width of t he text area in columns.
Delphi declarationFieldName
property DataSource;
C++ declaration
__property DataSource
Delphi declarationReadOnly
property FieldName;
C++ declaration
__property FieldName
Delphi declarationROWS
property ReadOnly;
C++ declaration
__property ReadOnly
StringsDelphi declaration
property ROWS: Integer read GetRows write SetRows default 5;
C++ declaration
__property int ROWS={ read=GetRows, write=SetRows, default=5 }
Description
Height of t he text area in rows.
Delphi declaration
property Strings: TStrings read GetStrings write SetStrings;
C++ declaration
__property Classes::TStrings *Strings={ read=GetStrings, write=SetStrings, nodefault }
Description
Initial content of t he text area.