Skip to content

Commit 81364c2

Browse files
SDK regenerated by CI server [ci skip]
1 parent 5590baa commit 81364c2

38 files changed

+1115
-37
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ Python Cloud SDK wraps Aspose.Words Cloud API so you could seamlessly integrate
1616
- [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.
1717
- Convert an encrypted PDF document into Word document format.
1818

19+
## Enhancements in Version 25.4
20+
21+
- Added 'AttachmentsEmbeddingMode' property for PdfSaveOptionsData class.
22+
- Added 'UpdateAmbiguousTextFont' property for SaveOptionsData class.
23+
24+
1925
## Enhancements in Version 25.2
2026

2127
- Added 'IdPrefix' property for HtmlFixedSaveOptionsData and SvgSaveOptionsData class.

asposewordscloud/models/azw3_save_options_data.py

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ class Azw3SaveOptionsData(object):
5050
'dml_rendering_mode': 'str',
5151
'file_name': 'str',
5252
'iml_rendering_mode': 'str',
53+
'update_ambiguous_text_font': 'bool',
5354
'update_created_time_property': 'bool',
5455
'update_fields': 'bool',
5556
'update_last_printed_property': 'bool',
@@ -106,6 +107,7 @@ class Azw3SaveOptionsData(object):
106107
'dml_rendering_mode': 'DmlRenderingMode',
107108
'file_name': 'FileName',
108109
'iml_rendering_mode': 'ImlRenderingMode',
110+
'update_ambiguous_text_font': 'UpdateAmbiguousTextFont',
109111
'update_created_time_property': 'UpdateCreatedTimeProperty',
110112
'update_fields': 'UpdateFields',
111113
'update_last_printed_property': 'UpdateLastPrintedProperty',
@@ -154,7 +156,7 @@ class Azw3SaveOptionsData(object):
154156
'save_format': 'SaveFormat'
155157
}
156158

157-
def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info_data=None, dml3_d_effects_rendering_mode=None, dml_effects_rendering_mode=None, dml_rendering_mode=None, file_name=None, iml_rendering_mode=None, update_created_time_property=None, update_fields=None, update_last_printed_property=None, update_last_saved_time_property=None, zip_output=None, allow_negative_indent=None, css_class_name_prefix=None, css_style_sheet_file_name=None, css_style_sheet_type=None, document_split_criteria=None, document_split_heading_level=None, encoding=None, export_document_properties=None, export_drop_down_form_field_as_text=None, export_font_resources=None, export_fonts_as_base64=None, export_headers_footers_mode=None, export_images_as_base64=None, export_language_information=None, export_list_labels=None, export_original_url_for_linked_images=None, export_page_margins=None, export_page_setup=None, export_relative_font_size=None, export_roundtrip_information=None, export_text_input_form_field_as_text=None, export_toc_page_numbers=None, export_xhtml_transitional=None, font_resources_subsetting_size_threshold=None, fonts_folder=None, fonts_folder_alias=None, html_version=None, image_resolution=None, images_folder=None, images_folder_alias=None, metafile_format=None, office_math_output_mode=None, pretty_format=None, replace_backslash_with_yen_sign=None, resolve_font_names=None, resource_folder=None, resource_folder_alias=None, scale_image_to_shape_size=None, table_width_output_mode=None, navigation_map_level=None): # noqa: E501
159+
def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info_data=None, dml3_d_effects_rendering_mode=None, dml_effects_rendering_mode=None, dml_rendering_mode=None, file_name=None, iml_rendering_mode=None, update_ambiguous_text_font=None, update_created_time_property=None, update_fields=None, update_last_printed_property=None, update_last_saved_time_property=None, zip_output=None, allow_negative_indent=None, css_class_name_prefix=None, css_style_sheet_file_name=None, css_style_sheet_type=None, document_split_criteria=None, document_split_heading_level=None, encoding=None, export_document_properties=None, export_drop_down_form_field_as_text=None, export_font_resources=None, export_fonts_as_base64=None, export_headers_footers_mode=None, export_images_as_base64=None, export_language_information=None, export_list_labels=None, export_original_url_for_linked_images=None, export_page_margins=None, export_page_setup=None, export_relative_font_size=None, export_roundtrip_information=None, export_text_input_form_field_as_text=None, export_toc_page_numbers=None, export_xhtml_transitional=None, font_resources_subsetting_size_threshold=None, fonts_folder=None, fonts_folder_alias=None, html_version=None, image_resolution=None, images_folder=None, images_folder_alias=None, metafile_format=None, office_math_output_mode=None, pretty_format=None, replace_backslash_with_yen_sign=None, resolve_font_names=None, resource_folder=None, resource_folder_alias=None, scale_image_to_shape_size=None, table_width_output_mode=None, navigation_map_level=None): # noqa: E501
158160
"""Azw3SaveOptionsData - a model defined in Swagger""" # noqa: E501
159161

160162
self._allow_embedding_post_script_fonts = None
@@ -164,6 +166,7 @@ def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info
164166
self._dml_rendering_mode = None
165167
self._file_name = None
166168
self._iml_rendering_mode = None
169+
self._update_ambiguous_text_font = None
167170
self._update_created_time_property = None
168171
self._update_fields = None
169172
self._update_last_printed_property = None
@@ -226,6 +229,8 @@ def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info
226229
self.file_name = file_name
227230
if iml_rendering_mode is not None:
228231
self.iml_rendering_mode = iml_rendering_mode
232+
if update_ambiguous_text_font is not None:
233+
self.update_ambiguous_text_font = update_ambiguous_text_font
229234
if update_created_time_property is not None:
230235
self.update_created_time_property = update_created_time_property
231236
if update_fields is not None:
@@ -503,6 +508,28 @@ def iml_rendering_mode(self, iml_rendering_mode):
503508
else:
504509
self._iml_rendering_mode = allowed_values[int(iml_rendering_mode) if six.PY3 else long(iml_rendering_mode)]
505510

511+
@property
512+
def update_ambiguous_text_font(self):
513+
"""Gets the update_ambiguous_text_font of this Azw3SaveOptionsData. # noqa: E501
514+
515+
Gets or sets a value indicating whether the font attributes will be changed according to the character code being used. # noqa: E501
516+
517+
:return: The update_ambiguous_text_font of this Azw3SaveOptionsData. # noqa: E501
518+
:rtype: bool
519+
"""
520+
return self._update_ambiguous_text_font
521+
522+
@update_ambiguous_text_font.setter
523+
def update_ambiguous_text_font(self, update_ambiguous_text_font):
524+
"""Sets the update_ambiguous_text_font of this Azw3SaveOptionsData.
525+
526+
Gets or sets a value indicating whether the font attributes will be changed according to the character code being used. # noqa: E501
527+
528+
:param update_ambiguous_text_font: The update_ambiguous_text_font of this Azw3SaveOptionsData. # noqa: E501
529+
:type: bool
530+
"""
531+
self._update_ambiguous_text_font = update_ambiguous_text_font
532+
506533
@property
507534
def update_created_time_property(self):
508535
"""Gets the update_created_time_property of this Azw3SaveOptionsData. # noqa: E501
@@ -1631,6 +1658,7 @@ def validate(self):
16311658

16321659

16331660

1661+
16341662

16351663

16361664
def to_dict(self):

asposewordscloud/models/bmp_save_options_data.py

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ class BmpSaveOptionsData(object):
5050
'dml_rendering_mode': 'str',
5151
'file_name': 'str',
5252
'iml_rendering_mode': 'str',
53+
'update_ambiguous_text_font': 'bool',
5354
'update_created_time_property': 'bool',
5455
'update_fields': 'bool',
5556
'update_last_printed_property': 'bool',
@@ -87,6 +88,7 @@ class BmpSaveOptionsData(object):
8788
'dml_rendering_mode': 'DmlRenderingMode',
8889
'file_name': 'FileName',
8990
'iml_rendering_mode': 'ImlRenderingMode',
91+
'update_ambiguous_text_font': 'UpdateAmbiguousTextFont',
9092
'update_created_time_property': 'UpdateCreatedTimeProperty',
9193
'update_fields': 'UpdateFields',
9294
'update_last_printed_property': 'UpdateLastPrintedProperty',
@@ -116,7 +118,7 @@ class BmpSaveOptionsData(object):
116118
'save_format': 'SaveFormat'
117119
}
118120

119-
def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info_data=None, dml3_d_effects_rendering_mode=None, dml_effects_rendering_mode=None, dml_rendering_mode=None, file_name=None, iml_rendering_mode=None, update_created_time_property=None, update_fields=None, update_last_printed_property=None, update_last_saved_time_property=None, zip_output=None, color_mode=None, jpeg_quality=None, metafile_rendering_options=None, numeral_format=None, optimize_output=None, page_count=None, page_index=None, horizontal_resolution=None, image_brightness=None, image_color_mode=None, image_contrast=None, paper_color=None, pixel_format=None, resolution=None, scale=None, use_anti_aliasing=None, use_high_quality_rendering=None, vertical_resolution=None, image_height=None, image_width=None, use_gdi_emf_renderer=None): # noqa: E501
121+
def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info_data=None, dml3_d_effects_rendering_mode=None, dml_effects_rendering_mode=None, dml_rendering_mode=None, file_name=None, iml_rendering_mode=None, update_ambiguous_text_font=None, update_created_time_property=None, update_fields=None, update_last_printed_property=None, update_last_saved_time_property=None, zip_output=None, color_mode=None, jpeg_quality=None, metafile_rendering_options=None, numeral_format=None, optimize_output=None, page_count=None, page_index=None, horizontal_resolution=None, image_brightness=None, image_color_mode=None, image_contrast=None, paper_color=None, pixel_format=None, resolution=None, scale=None, use_anti_aliasing=None, use_high_quality_rendering=None, vertical_resolution=None, image_height=None, image_width=None, use_gdi_emf_renderer=None): # noqa: E501
120122
"""BmpSaveOptionsData - a model defined in Swagger""" # noqa: E501
121123

122124
self._allow_embedding_post_script_fonts = None
@@ -126,6 +128,7 @@ def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info
126128
self._dml_rendering_mode = None
127129
self._file_name = None
128130
self._iml_rendering_mode = None
131+
self._update_ambiguous_text_font = None
129132
self._update_created_time_property = None
130133
self._update_fields = None
131134
self._update_last_printed_property = None
@@ -169,6 +172,8 @@ def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info
169172
self.file_name = file_name
170173
if iml_rendering_mode is not None:
171174
self.iml_rendering_mode = iml_rendering_mode
175+
if update_ambiguous_text_font is not None:
176+
self.update_ambiguous_text_font = update_ambiguous_text_font
172177
if update_created_time_property is not None:
173178
self.update_created_time_property = update_created_time_property
174179
if update_fields is not None:
@@ -408,6 +413,28 @@ def iml_rendering_mode(self, iml_rendering_mode):
408413
else:
409414
self._iml_rendering_mode = allowed_values[int(iml_rendering_mode) if six.PY3 else long(iml_rendering_mode)]
410415

416+
@property
417+
def update_ambiguous_text_font(self):
418+
"""Gets the update_ambiguous_text_font of this BmpSaveOptionsData. # noqa: E501
419+
420+
Gets or sets a value indicating whether the font attributes will be changed according to the character code being used. # noqa: E501
421+
422+
:return: The update_ambiguous_text_font of this BmpSaveOptionsData. # noqa: E501
423+
:rtype: bool
424+
"""
425+
return self._update_ambiguous_text_font
426+
427+
@update_ambiguous_text_font.setter
428+
def update_ambiguous_text_font(self, update_ambiguous_text_font):
429+
"""Sets the update_ambiguous_text_font of this BmpSaveOptionsData.
430+
431+
Gets or sets a value indicating whether the font attributes will be changed according to the character code being used. # noqa: E501
432+
433+
:param update_ambiguous_text_font: The update_ambiguous_text_font of this BmpSaveOptionsData. # noqa: E501
434+
:type: bool
435+
"""
436+
self._update_ambiguous_text_font = update_ambiguous_text_font
437+
411438
@property
412439
def update_created_time_property(self):
413440
"""Gets the update_created_time_property of this BmpSaveOptionsData. # noqa: E501
@@ -1050,6 +1077,7 @@ def validate(self):
10501077

10511078

10521079

1080+
10531081
if self._metafile_rendering_options is not None:
10541082
self._metafile_rendering_options.validate()
10551083

asposewordscloud/models/doc_save_options_data.py

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ class DocSaveOptionsData(object):
5050
'dml_rendering_mode': 'str',
5151
'file_name': 'str',
5252
'iml_rendering_mode': 'str',
53+
'update_ambiguous_text_font': 'bool',
5354
'update_created_time_property': 'bool',
5455
'update_fields': 'bool',
5556
'update_last_printed_property': 'bool',
@@ -70,6 +71,7 @@ class DocSaveOptionsData(object):
7071
'dml_rendering_mode': 'DmlRenderingMode',
7172
'file_name': 'FileName',
7273
'iml_rendering_mode': 'ImlRenderingMode',
74+
'update_ambiguous_text_font': 'UpdateAmbiguousTextFont',
7375
'update_created_time_property': 'UpdateCreatedTimeProperty',
7476
'update_fields': 'UpdateFields',
7577
'update_last_printed_property': 'UpdateLastPrintedProperty',
@@ -82,7 +84,7 @@ class DocSaveOptionsData(object):
8284
'save_format': 'SaveFormat'
8385
}
8486

85-
def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info_data=None, dml3_d_effects_rendering_mode=None, dml_effects_rendering_mode=None, dml_rendering_mode=None, file_name=None, iml_rendering_mode=None, update_created_time_property=None, update_fields=None, update_last_printed_property=None, update_last_saved_time_property=None, zip_output=None, always_compress_metafiles=None, password=None, save_picture_bullet=None, save_routing_slip=None): # noqa: E501
87+
def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info_data=None, dml3_d_effects_rendering_mode=None, dml_effects_rendering_mode=None, dml_rendering_mode=None, file_name=None, iml_rendering_mode=None, update_ambiguous_text_font=None, update_created_time_property=None, update_fields=None, update_last_printed_property=None, update_last_saved_time_property=None, zip_output=None, always_compress_metafiles=None, password=None, save_picture_bullet=None, save_routing_slip=None): # noqa: E501
8688
"""DocSaveOptionsData - a model defined in Swagger""" # noqa: E501
8789

8890
self._allow_embedding_post_script_fonts = None
@@ -92,6 +94,7 @@ def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info
9294
self._dml_rendering_mode = None
9395
self._file_name = None
9496
self._iml_rendering_mode = None
97+
self._update_ambiguous_text_font = None
9598
self._update_created_time_property = None
9699
self._update_fields = None
97100
self._update_last_printed_property = None
@@ -118,6 +121,8 @@ def __init__(self, allow_embedding_post_script_fonts=None, custom_time_zone_info
118121
self.file_name = file_name
119122
if iml_rendering_mode is not None:
120123
self.iml_rendering_mode = iml_rendering_mode
124+
if update_ambiguous_text_font is not None:
125+
self.update_ambiguous_text_font = update_ambiguous_text_font
121126
if update_created_time_property is not None:
122127
self.update_created_time_property = update_created_time_property
123128
if update_fields is not None:
@@ -323,6 +328,28 @@ def iml_rendering_mode(self, iml_rendering_mode):
323328
else:
324329
self._iml_rendering_mode = allowed_values[int(iml_rendering_mode) if six.PY3 else long(iml_rendering_mode)]
325330

331+
@property
332+
def update_ambiguous_text_font(self):
333+
"""Gets the update_ambiguous_text_font of this DocSaveOptionsData. # noqa: E501
334+
335+
Gets or sets a value indicating whether the font attributes will be changed according to the character code being used. # noqa: E501
336+
337+
:return: The update_ambiguous_text_font of this DocSaveOptionsData. # noqa: E501
338+
:rtype: bool
339+
"""
340+
return self._update_ambiguous_text_font
341+
342+
@update_ambiguous_text_font.setter
343+
def update_ambiguous_text_font(self, update_ambiguous_text_font):
344+
"""Sets the update_ambiguous_text_font of this DocSaveOptionsData.
345+
346+
Gets or sets a value indicating whether the font attributes will be changed according to the character code being used. # noqa: E501
347+
348+
:param update_ambiguous_text_font: The update_ambiguous_text_font of this DocSaveOptionsData. # noqa: E501
349+
:type: bool
350+
"""
351+
self._update_ambiguous_text_font = update_ambiguous_text_font
352+
326353
@property
327354
def update_created_time_property(self):
328355
"""Gets the update_created_time_property of this DocSaveOptionsData. # noqa: E501
@@ -561,6 +588,7 @@ def validate(self):
561588

562589

563590

591+
564592
def to_dict(self):
565593
"""Returns the model properties as a dict"""
566594
result = {}

0 commit comments

Comments
 (0)