v1.4.9-patch2

This commit is contained in:
csh 2023-10-19 14:47:21 +08:00
parent 5172a78e3e
commit aab0a498c6
3 changed files with 5 additions and 1171 deletions

File diff suppressed because it is too large Load Diff

View File

@ -12,7 +12,7 @@ TSOffice 项目:纯 TSL 代码实现 excel、word 文件读写
可选: 可选:
- `fmt_pubkrnl_plugin` 放入 tsl 安装根目录下 Plugin 文件夹若需要执行Demo文件夹下的[ExcelHelp.tsl](./Demo/ExcelHelp.tsl)和[WordHelp.tsl](./Demo/WordHelp.tsl),需要部署改动态库 - `fmt_pubkrnl_plugin` 放入 tsl 安装根目录下 Plugin 文件夹若需要执行Demo文件夹下的[XlsxHelp.tsl](./Demo/XlsxHelp.tsl)和[DocxHelp.tsl](./Demo/DocxHelp.tsl),需要部署改动态库
### Linux ### Linux
@ -22,7 +22,7 @@ TSOffice 项目:纯 TSL 代码实现 excel、word 文件读写
## 帮助文档 ## 帮助文档
- [Excel 帮助文档](./ExcelFile使用帮助.xlsx) - [Excel 帮助文档](./XlsxFile使用帮助.xlsx)
- [Word 帮助文档](./DocxFile使用帮助.docx) - [Word 帮助文档](./DocxFile使用帮助.docx)

View File

@ -1,3 +1,5 @@
// Version 1.4.9
Type TSXlsxFile = Class Type TSXlsxFile = Class
///Version: V1.0 2022-08-08 ///Version: V1.0 2022-08-08
///适用于 Microsoft Excel? 2007 及以上版本创建的电子表格文档。支持 XLSX / XLSM / XLTM / XLTX 等多种文档格式。 ///适用于 Microsoft Excel? 2007 及以上版本创建的电子表格文档。支持 XLSX / XLSM / XLTM / XLTX 等多种文档格式。
@ -1056,3 +1058,4 @@ private
workbook_; //WorkBook对象 workbook_; //WorkBook对象
objMgr_; //各种对象缓存、管理 objMgr_; //各种对象缓存、管理
End; End;