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
Copy file name to clipboardExpand all lines: README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,19 @@ Python Cloud SDK wraps Aspose.Words Cloud API so you could seamlessly integrate
16
16
-[Convert a document to desired file format](https://docs.aspose.cloud/display/wordscloud/Convert+Document+to+Destination+Format+with+Detailed+Settings+and+Save+Result+to+Storage) along with detailed settings.
17
17
- Convert an encrypted PDF document into Word document format.
18
18
19
+
## Enhancements in Version 22.4
20
+
21
+
- Added ExportShapesAsSvg to HtmlSaveOption.
22
+
- Added new endpoint '~/styles/copy_from'.
23
+
24
+
19
25
## Enhancements in Version 22.3
20
26
21
27
- Online methods returns the dictionary of files with included original filename as key instead of single file content in responses.
22
28
- Parameters contained sensitive data should be passed in encrypted form. Names of the parameters have 'encrypted' prefix.
23
29
- Added Encrypt method to encrypt data on the API public key. Use it to prepare values for parameters required encrypted data.
24
30
- GetPublicKey method is not billable.
31
+
- Changed type of enumerations for members of SaveOptionsData and other inherited classes from string to enum.
:param name str : The filename of the target document. (required)
1511
+
:param template_name str : The filename of the origin document. (required)
1512
+
:param folder str : Original document folder.
1513
+
:param storage str : Original document storage.
1514
+
:param load_encoding str : Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
1515
+
:param password str : 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.
1516
+
:param encrypted_password str : Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
1517
+
:param dest_file_name str : 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.
1518
+
:param revision_author str : 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.
1519
+
:param revision_date_time str : The date and time to use for revisions.
"""Gets the export_shapes_as_svg of this EpubSaveOptionsData. # noqa: E501
1150
+
1151
+
Gets or sets the flag, that controls whether Aspose.Words.Drawing.Shape nodes are converted to SVG images when saving to HTML, MHTML or EPUB. Default value is false. # noqa: E501
1152
+
1153
+
:return: The export_shapes_as_svg of this EpubSaveOptionsData. # noqa: E501
"""Sets the export_shapes_as_svg of this EpubSaveOptionsData.
1161
+
1162
+
Gets or sets the flag, that controls whether Aspose.Words.Drawing.Shape nodes are converted to SVG images when saving to HTML, MHTML or EPUB. Default value is false. # noqa: E501
1163
+
1164
+
:param export_shapes_as_svg: The export_shapes_as_svg of this EpubSaveOptionsData. # noqa: E501
1165
+
:type: bool
1166
+
"""
1167
+
self._export_shapes_as_svg=export_shapes_as_svg
1168
+
1142
1169
@property
1143
1170
defexport_text_box_as_svg(self):
1144
1171
"""Gets the export_text_box_as_svg of this EpubSaveOptionsData. # noqa: E501
0 commit comments