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);
Begin

View File

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

View File

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

View File

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