You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
46
+
finalString? loadEncoding;
47
+
48
+
/// Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
49
+
finalString? password;
50
+
51
+
/// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
52
+
finalString? encryptedPassword;
53
+
54
+
/// Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
55
+
finalString? destFileName;
56
+
57
+
/// Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
/// Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
51
+
finalString? loadEncoding;
52
+
53
+
/// Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
54
+
finalString? password;
55
+
56
+
/// Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
57
+
finalString? encryptedPassword;
58
+
59
+
/// Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
60
+
finalString? destFileName;
61
+
62
+
/// Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
0 commit comments