Developer

Multiline

Specify whether text inside cells will be displayed in multiple rows if line-break characters are placed within string.

property MultiLine: Boolean read FMultiLine write SetMultiline default False;
Example:

NextGrid61.Cell[2, 2].AsString := 'text in' + #13#10 + 'multiple' + #13#10 + 'rows';

Remarks:


This property should not be misused with WrapKind property.

Inplace-edit will be single-line even if this property is set to True. To enable multi-line editing use TNxMemoColumn instead.

See also