Search found 2 matches
- Sat Oct 01, 2022 11:36 am
- Forum: AXWWriter and DOCXReadWrite
- Topic: table content linespacing
- Replies: 2
- Views: 2504
Re: table content linespacing
thanks !
- Tue Sep 20, 2022 11:09 am
- Forum: AXWWriter and DOCXReadWrite
- Topic: table content linespacing
- Replies: 2
- Views: 2504
table content linespacing
Hellow ! How can i doubled linespacing in table :?: Table := aDocument.Paras.InsertTableAtPos(sel.FirstPos); Table.Name := vAliasName table.AddRows(2, 3); for j := 0 to 2 do begin Table.Cells[0, j].Paras.PlainText := 'row ' + intToStr(j) + 'column 0'; Table.Cells[1, j].Paras.PlainText := 'row ' + in...