This commit is contained in:
csh 2023-02-23 11:10:51 +08:00
parent b8a23ba5a2
commit 710077aff4
6 changed files with 14 additions and 6 deletions

Binary file not shown.

View File

@ -1,4 +1,4 @@
// Version 1.1.9
// Version 1.2.0
Function TOfficeObj(n);
Begin

View File

@ -1,4 +1,4 @@
// Version 1.1.9
// Version 1.2.0
Type TSDocxFile = Class
///Version: V1.0 2022-09-20

View File

@ -1,4 +1,4 @@
// Version 1.1.9
// Version 1.2.0
Type TSExcelFile = Class
///Version: V1.0 2022-08-08
@ -894,9 +894,9 @@ Type TSExcelFile = Class
///获取工作簿计算选项
///返回: TCalcPr对象
Function GetCaclOptions();
Function GetCalcOptions();
Begin
return workbook_.GetCaclOptions();
return workbook_.GetCalcOptions();
End;
Function WorkBook();

View File

@ -1323,7 +1323,7 @@ Type xlsxWorkBook = Class
workbook_node.InsertAfterChild(sheet_node, calcPr.Marshal());
End;
Function GetCaclOptions();
Function GetCalcOptions();
Begin
workbook_xml := GetXmlFileObj('xl/workbook.xml');
node := workbook_xml.FirstChildElement('workbook').FirstChildElement('calcPr');

View File

@ -1,5 +1,13 @@
# 更新日志
## 2023-2-23
### V1.2.0
#### excel
1. 修复`GetCaclOptions`名称错误,更改为`GetCaclOptions`
## 2023-2-22
### V1.1.9