This commit is contained in:
csh 2023-07-11 15:11:36 +08:00
parent ff6d23090e
commit f34d03a50f
5 changed files with 19 additions and 13 deletions

Binary file not shown.

View File

@ -1,4 +1,4 @@
// Version 1.3.3 // Version 1.3.4
Function TOfficeObj(n); Function TOfficeObj(n);
Begin Begin

View File

@ -1,4 +1,4 @@
// Version 1.3.3 // Version 1.3.4
Type TSDocxFile = Class Type TSDocxFile = Class
///Version: V1.0 2022-09-20 ///Version: V1.0 2022-09-20
@ -68,11 +68,11 @@ Type TSDocxFile = Class
return array(err, errmsg); return array(err, errmsg);
End; End;
///设置密码 ///设置密码
Function SetPassword(passwd) Function SetPassword(passwd)
Begin Begin
if not ifnil(passwd) then zipfile_.Password := passwd; zipfile_.Password := passwd;
End; End;
///保存文件 ///保存文件
///返回: [err, info] ///返回: [err, info]

View File

@ -1,4 +1,4 @@
// Version 1.3.3 // Version 1.3.4
Type TSExcelFile = Class Type TSExcelFile = Class
///Version: V1.0 2022-08-08 ///Version: V1.0 2022-08-08
@ -80,11 +80,11 @@ Type TSExcelFile = Class
return zipfile_.Save(); return zipfile_.Save();
End; End;
///设置密码 ///设置密码
Function SetPassword(passwd) Function SetPassword(passwd)
Begin Begin
if not ifnil(passwd) then zipfile_.Password := passwd; zipfile_.Password := passwd;
End; End;
///打开二进制内容 ///打开二进制内容
///data: 二进制数据 ///data: 二进制数据

View File

@ -1,5 +1,11 @@
# 更新日志 # 更新日志
## 2023-7-11
### V1.3.4
修复加密Bug
## 2023-7-4 ## 2023-7-4
### V1.3.3 ### V1.3.3