This commit is contained in:
csh 2025-01-17 18:33:30 +08:00
parent 0f07603d73
commit 93533c41a0
5 changed files with 8415 additions and 8399 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
// Version 1.7.6
// Version 1.7.7
Type TSDocxFile = Class
///Version: V1.0 2022-09-20
///适用于 Microsoft Word docx格式文件

View File

@ -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 等多种文档格式。

View File

@ -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

View File

@ -1,5 +1,18 @@
# 更新日志
## 2025-1-17
### V1.7.7
#### word
1. **feat**`TPicture`对象设置画布大小`CanvasWidth`、`CanvasHeight`
2. **fix**`InsertTable`表格数据不对齐报错
#### excel
1. **fix**`SetColOutlineLevel`错误
## 2025-1-8
### V1.7.6