v1.7.7
This commit is contained in:
parent
0f07603d73
commit
93533c41a0
File diff suppressed because it is too large
Load Diff
|
|
@ -1,4 +1,4 @@
|
|||
// Version 1.7.6
|
||||
// Version 1.7.7
|
||||
Type TSDocxFile = Class
|
||||
///Version: V1.0 2022-09-20
|
||||
///适用于 Microsoft Word docx格式文件
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Version 1.7.6
|
||||
// Version 1.7.7
|
||||
Type TSXlsxFile = Class
|
||||
///Version: V1.0 2022-08-08
|
||||
///适用于 Microsoft Excel? 2007 及以上版本创建的电子表格文档。支持 XLSX / XLSM / XLTM / XLTX 等多种文档格式。
|
||||
|
|
|
|||
|
|
@ -1494,7 +1494,7 @@ Type xlsxWorkBook = Class
|
|||
if col >= min and col <= max then
|
||||
Begin
|
||||
level_val := node.GetAttribute('outlineLevel');
|
||||
if strtoint(level_val) = level then return;
|
||||
if trystrtoint(level_val, r) and r = level then return;
|
||||
else Begin
|
||||
if col = min and col = max then node.SetAttribute('outlineLevel', level);
|
||||
else begin
|
||||
|
|
|
|||
Loading…
Reference in New Issue