v1.6.3
This commit is contained in:
parent
c1a93bb16e
commit
f499526f04
|
|
@ -1,4 +1,4 @@
|
|||
// Version 1.6.2
|
||||
// Version 1.6.3
|
||||
Function TOfficeObj(n);
|
||||
Begin
|
||||
case lowercase(n) of
|
||||
|
|
@ -13910,7 +13910,11 @@ Type TDocumentBody = Class(DocObject)
|
|||
//统计数字项目编号
|
||||
p := new TParagraph(pNode);
|
||||
text := p.Text();
|
||||
if text = "" then continue;
|
||||
if text = "" then
|
||||
begin
|
||||
pNode := pNode.NextElement();
|
||||
continue;
|
||||
end
|
||||
numArr := array();
|
||||
numId := getNumPr('numId', docx, p);
|
||||
ilvl := getNumPr('Level', docx, p);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Version 1.6.2
|
||||
// Version 1.6.3
|
||||
Type TSDocxFile = Class
|
||||
///Version: V1.0 2022-09-20
|
||||
///适用于 Microsoft Word docx格式文件
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Version 1.6.2
|
||||
// Version 1.6.3
|
||||
Type TSXlsxFile = Class
|
||||
///Version: V1.0 2022-08-08
|
||||
///适用于 Microsoft Excel? 2007 及以上版本创建的电子表格文档。支持 XLSX / XLSM / XLTM / XLTX 等多种文档格式。
|
||||
|
|
|
|||
Loading…
Reference in New Issue