v1.8.4
This commit is contained in:
parent
95a00e7002
commit
ea528f3094
|
|
@ -1,4 +1,4 @@
|
|||
// Version 1.8.3
|
||||
// Version 1.8.4
|
||||
Function TOfficeObj(n);
|
||||
Begin
|
||||
case lowercase(n) of
|
||||
|
|
@ -15093,10 +15093,16 @@ Type TTable = Class(DocObject, TTableImpl)
|
|||
for row:=top2 to bottom2 do Begin
|
||||
c := Cell(row, left2);
|
||||
c.mergeSpan_ := val;
|
||||
if left2 <> right2 then
|
||||
begin
|
||||
gridSpan := class(TSXml).GetNode(c.node_, 'w:tcPr/w:gridSpan', true);
|
||||
gridSpan.SetAttribute('w:val', val);
|
||||
end
|
||||
if top2 <> bottom2 then
|
||||
begin
|
||||
node := class(TSXml).GetNode(c.node_, 'w:tcPr/w:vMerge', true);
|
||||
node.SetAttribute('w:val', row=top2 ? 'restart' : 'continue');
|
||||
end
|
||||
if row <> top2 then Begin
|
||||
if not del then
|
||||
theCell.Append(c);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Version 1.8.3
|
||||
// Version 1.8.4
|
||||
Type TSDocxFile = Class
|
||||
///Version: V1.0 2022-09-20
|
||||
///适用于 Microsoft Word docx格式文件
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Version 1.8.3
|
||||
// Version 1.8.4
|
||||
Type TSXlsxFile = Class
|
||||
///Version: V1.0 2022-08-08
|
||||
///适用于 Microsoft Excel? 2007 及以上版本创建的电子表格文档。支持 XLSX / XLSM / XLTM / XLTX 等多种文档格式。
|
||||
|
|
|
|||
Loading…
Reference in New Issue