v1.3.4
This commit is contained in:
parent
ff6d23090e
commit
f34d03a50f
Binary file not shown.
|
|
@ -1,4 +1,4 @@
|
||||||
// Version 1.3.3
|
// Version 1.3.4
|
||||||
|
|
||||||
Function TOfficeObj(n);
|
Function TOfficeObj(n);
|
||||||
Begin
|
Begin
|
||||||
|
|
|
||||||
|
|
@ -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]
|
||||||
|
|
|
||||||
|
|
@ -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: 二进制数据
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue