Hi! I need paste text into cell of table.
I use table1.cell[0, 0].addNL(s);
but if s = 'перенос '+#10#13+'строки'; SrichViewEdit ignore it and paste into cell 'перенос строки'
line break in cell
-
- Site Admin
- Posts: 17522
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
To add multiline text, use AddTextNL:
Code: Select all
table.Cells[0,0].AddTextNL('line1'#10#13'line2', 0, 0, 0);
-
- Site Admin
- Posts: 17522
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
I assume that "lines" means "paragraphs" (including line breaks inside paragraphs)
Code: Select all
function GetParaCount(RVData: TCustomRVData): Integer;
var i: Integer;
begin
Result := 0;
for I := 0 to RVData.ItemCount - 1 do
if RVData.IsFromNewLine(I) then
inc(Result);
end;
Call:
ParaCount := GetParaCount(table.Cells[0,0].GetRVData);