aspose_words_cloud 25.3 → 25.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aspose_words_cloud/models/azw3_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/bmp_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/compare_options.rb +27 -1
- data/lib/aspose_words_cloud/models/doc_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/docm_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/docx_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/dot_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/dotm_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/dotx_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/emf_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/eps_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/epub_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/flat_opc_macro_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/flat_opc_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/flat_opc_template_macro_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/flat_opc_template_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/gif_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/html_fixed_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/html_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/jpeg_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/markdown_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/mhtml_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/odt_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/open_xps_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/ott_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/page_setup.rb +2 -2
- data/lib/aspose_words_cloud/models/pcl_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/pdf_save_options_data.rb +40 -1
- data/lib/aspose_words_cloud/models/png_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/ps_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/rtf_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/svg_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/text_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/tiff_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/word_ml_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/xaml_fixed_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/xaml_flow_pack_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/xaml_flow_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/xps_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/version.rb +1 -1
- metadata +2 -2
@@ -60,6 +60,9 @@ module AsposeWordsCloud
|
|
60
60
|
# The default value is Aspose.Words.Saving.ImlRenderingMode.InkML.
|
61
61
|
attr_accessor :iml_rendering_mode
|
62
62
|
|
63
|
+
# Gets or sets a value indicating whether the font attributes will be changed according to the character code being used.
|
64
|
+
attr_accessor :update_ambiguous_text_font
|
65
|
+
|
63
66
|
# Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving.
|
64
67
|
# Default value is false.
|
65
68
|
attr_accessor :update_created_time_property
|
@@ -253,6 +256,7 @@ module AsposeWordsCloud
|
|
253
256
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
254
257
|
:'file_name' => :'FileName',
|
255
258
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
259
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
256
260
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
257
261
|
:'update_fields' => :'UpdateFields',
|
258
262
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -312,6 +316,7 @@ module AsposeWordsCloud
|
|
312
316
|
:'dml_rendering_mode' => :'String',
|
313
317
|
:'file_name' => :'String',
|
314
318
|
:'iml_rendering_mode' => :'String',
|
319
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
315
320
|
:'update_created_time_property' => :'BOOLEAN',
|
316
321
|
:'update_fields' => :'BOOLEAN',
|
317
322
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -399,6 +404,10 @@ module AsposeWordsCloud
|
|
399
404
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
400
405
|
end
|
401
406
|
|
407
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
408
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
409
|
+
end
|
410
|
+
|
402
411
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
403
412
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
404
413
|
end
|
@@ -792,6 +801,7 @@ module AsposeWordsCloud
|
|
792
801
|
dml_rendering_mode == other.dml_rendering_mode &&
|
793
802
|
file_name == other.file_name &&
|
794
803
|
iml_rendering_mode == other.iml_rendering_mode &&
|
804
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
795
805
|
update_created_time_property == other.update_created_time_property &&
|
796
806
|
update_fields == other.update_fields &&
|
797
807
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -849,7 +859,7 @@ module AsposeWordsCloud
|
|
849
859
|
# Calculates hash code according to all attributes.
|
850
860
|
# @return [Fixnum] Hash code
|
851
861
|
def hash
|
852
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, allow_negative_indent, css_class_name_prefix, css_style_sheet_file_name, css_style_sheet_type, document_split_criteria, document_split_heading_level, encoding, export_document_properties, export_drop_down_form_field_as_text, export_font_resources, export_fonts_as_base64, export_headers_footers_mode, export_images_as_base64, export_language_information, export_list_labels, export_original_url_for_linked_images, export_page_margins, export_page_setup, export_relative_font_size, export_roundtrip_information, export_text_input_form_field_as_text, export_toc_page_numbers, export_xhtml_transitional, font_resources_subsetting_size_threshold, fonts_folder, fonts_folder_alias, html_version, image_resolution, images_folder, images_folder_alias, metafile_format, office_math_output_mode, pretty_format, replace_backslash_with_yen_sign, resolve_font_names, resource_folder, resource_folder_alias, scale_image_to_shape_size, table_width_output_mode, navigation_map_level, save_format].hash
|
862
|
+
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_ambiguous_text_font, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, allow_negative_indent, css_class_name_prefix, css_style_sheet_file_name, css_style_sheet_type, document_split_criteria, document_split_heading_level, encoding, export_document_properties, export_drop_down_form_field_as_text, export_font_resources, export_fonts_as_base64, export_headers_footers_mode, export_images_as_base64, export_language_information, export_list_labels, export_original_url_for_linked_images, export_page_margins, export_page_setup, export_relative_font_size, export_roundtrip_information, export_text_input_form_field_as_text, export_toc_page_numbers, export_xhtml_transitional, font_resources_subsetting_size_threshold, fonts_folder, fonts_folder_alias, html_version, image_resolution, images_folder, images_folder_alias, metafile_format, office_math_output_mode, pretty_format, replace_backslash_with_yen_sign, resolve_font_names, resource_folder, resource_folder_alias, scale_image_to_shape_size, table_width_output_mode, navigation_map_level, save_format].hash
|
853
863
|
end
|
854
864
|
|
855
865
|
# Builds the object from hash
|
@@ -60,6 +60,9 @@ module AsposeWordsCloud
|
|
60
60
|
# The default value is Aspose.Words.Saving.ImlRenderingMode.InkML.
|
61
61
|
attr_accessor :iml_rendering_mode
|
62
62
|
|
63
|
+
# Gets or sets a value indicating whether the font attributes will be changed according to the character code being used.
|
64
|
+
attr_accessor :update_ambiguous_text_font
|
65
|
+
|
63
66
|
# Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving.
|
64
67
|
# Default value is false.
|
65
68
|
attr_accessor :update_created_time_property
|
@@ -126,6 +129,7 @@ module AsposeWordsCloud
|
|
126
129
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
127
130
|
:'file_name' => :'FileName',
|
128
131
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
132
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
129
133
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
130
134
|
:'update_fields' => :'UpdateFields',
|
131
135
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -149,6 +153,7 @@ module AsposeWordsCloud
|
|
149
153
|
:'dml_rendering_mode' => :'String',
|
150
154
|
:'file_name' => :'String',
|
151
155
|
:'iml_rendering_mode' => :'String',
|
156
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
152
157
|
:'update_created_time_property' => :'BOOLEAN',
|
153
158
|
:'update_fields' => :'BOOLEAN',
|
154
159
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -200,6 +205,10 @@ module AsposeWordsCloud
|
|
200
205
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
201
206
|
end
|
202
207
|
|
208
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
209
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
210
|
+
end
|
211
|
+
|
203
212
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
204
213
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
205
214
|
end
|
@@ -353,6 +362,7 @@ module AsposeWordsCloud
|
|
353
362
|
dml_rendering_mode == other.dml_rendering_mode &&
|
354
363
|
file_name == other.file_name &&
|
355
364
|
iml_rendering_mode == other.iml_rendering_mode &&
|
365
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
356
366
|
update_created_time_property == other.update_created_time_property &&
|
357
367
|
update_fields == other.update_fields &&
|
358
368
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -374,7 +384,7 @@ module AsposeWordsCloud
|
|
374
384
|
# Calculates hash code according to all attributes.
|
375
385
|
# @return [Fixnum] Hash code
|
376
386
|
def hash
|
377
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, compliance, compression_level, password, pretty_format, save_format].hash
|
387
|
+
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_ambiguous_text_font, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, compliance, compression_level, password, pretty_format, save_format].hash
|
378
388
|
end
|
379
389
|
|
380
390
|
# Builds the object from hash
|
@@ -60,6 +60,9 @@ module AsposeWordsCloud
|
|
60
60
|
# The default value is Aspose.Words.Saving.ImlRenderingMode.InkML.
|
61
61
|
attr_accessor :iml_rendering_mode
|
62
62
|
|
63
|
+
# Gets or sets a value indicating whether the font attributes will be changed according to the character code being used.
|
64
|
+
attr_accessor :update_ambiguous_text_font
|
65
|
+
|
63
66
|
# Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving.
|
64
67
|
# Default value is false.
|
65
68
|
attr_accessor :update_created_time_property
|
@@ -126,6 +129,7 @@ module AsposeWordsCloud
|
|
126
129
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
127
130
|
:'file_name' => :'FileName',
|
128
131
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
132
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
129
133
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
130
134
|
:'update_fields' => :'UpdateFields',
|
131
135
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -149,6 +153,7 @@ module AsposeWordsCloud
|
|
149
153
|
:'dml_rendering_mode' => :'String',
|
150
154
|
:'file_name' => :'String',
|
151
155
|
:'iml_rendering_mode' => :'String',
|
156
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
152
157
|
:'update_created_time_property' => :'BOOLEAN',
|
153
158
|
:'update_fields' => :'BOOLEAN',
|
154
159
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -200,6 +205,10 @@ module AsposeWordsCloud
|
|
200
205
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
201
206
|
end
|
202
207
|
|
208
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
209
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
210
|
+
end
|
211
|
+
|
203
212
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
204
213
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
205
214
|
end
|
@@ -353,6 +362,7 @@ module AsposeWordsCloud
|
|
353
362
|
dml_rendering_mode == other.dml_rendering_mode &&
|
354
363
|
file_name == other.file_name &&
|
355
364
|
iml_rendering_mode == other.iml_rendering_mode &&
|
365
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
356
366
|
update_created_time_property == other.update_created_time_property &&
|
357
367
|
update_fields == other.update_fields &&
|
358
368
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -374,7 +384,7 @@ module AsposeWordsCloud
|
|
374
384
|
# Calculates hash code according to all attributes.
|
375
385
|
# @return [Fixnum] Hash code
|
376
386
|
def hash
|
377
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, compliance, compression_level, password, pretty_format, save_format].hash
|
387
|
+
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_ambiguous_text_font, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, compliance, compression_level, password, pretty_format, save_format].hash
|
378
388
|
end
|
379
389
|
|
380
390
|
# Builds the object from hash
|
@@ -60,6 +60,9 @@ module AsposeWordsCloud
|
|
60
60
|
# The default value is Aspose.Words.Saving.ImlRenderingMode.InkML.
|
61
61
|
attr_accessor :iml_rendering_mode
|
62
62
|
|
63
|
+
# Gets or sets a value indicating whether the font attributes will be changed according to the character code being used.
|
64
|
+
attr_accessor :update_ambiguous_text_font
|
65
|
+
|
63
66
|
# Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving.
|
64
67
|
# Default value is false.
|
65
68
|
attr_accessor :update_created_time_property
|
@@ -126,6 +129,7 @@ module AsposeWordsCloud
|
|
126
129
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
127
130
|
:'file_name' => :'FileName',
|
128
131
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
132
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
129
133
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
130
134
|
:'update_fields' => :'UpdateFields',
|
131
135
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -149,6 +153,7 @@ module AsposeWordsCloud
|
|
149
153
|
:'dml_rendering_mode' => :'String',
|
150
154
|
:'file_name' => :'String',
|
151
155
|
:'iml_rendering_mode' => :'String',
|
156
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
152
157
|
:'update_created_time_property' => :'BOOLEAN',
|
153
158
|
:'update_fields' => :'BOOLEAN',
|
154
159
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -200,6 +205,10 @@ module AsposeWordsCloud
|
|
200
205
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
201
206
|
end
|
202
207
|
|
208
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
209
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
210
|
+
end
|
211
|
+
|
203
212
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
204
213
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
205
214
|
end
|
@@ -353,6 +362,7 @@ module AsposeWordsCloud
|
|
353
362
|
dml_rendering_mode == other.dml_rendering_mode &&
|
354
363
|
file_name == other.file_name &&
|
355
364
|
iml_rendering_mode == other.iml_rendering_mode &&
|
365
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
356
366
|
update_created_time_property == other.update_created_time_property &&
|
357
367
|
update_fields == other.update_fields &&
|
358
368
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -374,7 +384,7 @@ module AsposeWordsCloud
|
|
374
384
|
# Calculates hash code according to all attributes.
|
375
385
|
# @return [Fixnum] Hash code
|
376
386
|
def hash
|
377
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, compliance, compression_level, password, pretty_format, save_format].hash
|
387
|
+
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_ambiguous_text_font, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, compliance, compression_level, password, pretty_format, save_format].hash
|
378
388
|
end
|
379
389
|
|
380
390
|
# Builds the object from hash
|
@@ -60,6 +60,9 @@ module AsposeWordsCloud
|
|
60
60
|
# The default value is Aspose.Words.Saving.ImlRenderingMode.InkML.
|
61
61
|
attr_accessor :iml_rendering_mode
|
62
62
|
|
63
|
+
# Gets or sets a value indicating whether the font attributes will be changed according to the character code being used.
|
64
|
+
attr_accessor :update_ambiguous_text_font
|
65
|
+
|
63
66
|
# Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving.
|
64
67
|
# Default value is false.
|
65
68
|
attr_accessor :update_created_time_property
|
@@ -126,6 +129,7 @@ module AsposeWordsCloud
|
|
126
129
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
127
130
|
:'file_name' => :'FileName',
|
128
131
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
132
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
129
133
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
130
134
|
:'update_fields' => :'UpdateFields',
|
131
135
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -149,6 +153,7 @@ module AsposeWordsCloud
|
|
149
153
|
:'dml_rendering_mode' => :'String',
|
150
154
|
:'file_name' => :'String',
|
151
155
|
:'iml_rendering_mode' => :'String',
|
156
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
152
157
|
:'update_created_time_property' => :'BOOLEAN',
|
153
158
|
:'update_fields' => :'BOOLEAN',
|
154
159
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -200,6 +205,10 @@ module AsposeWordsCloud
|
|
200
205
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
201
206
|
end
|
202
207
|
|
208
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
209
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
210
|
+
end
|
211
|
+
|
203
212
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
204
213
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
205
214
|
end
|
@@ -353,6 +362,7 @@ module AsposeWordsCloud
|
|
353
362
|
dml_rendering_mode == other.dml_rendering_mode &&
|
354
363
|
file_name == other.file_name &&
|
355
364
|
iml_rendering_mode == other.iml_rendering_mode &&
|
365
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
356
366
|
update_created_time_property == other.update_created_time_property &&
|
357
367
|
update_fields == other.update_fields &&
|
358
368
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -374,7 +384,7 @@ module AsposeWordsCloud
|
|
374
384
|
# Calculates hash code according to all attributes.
|
375
385
|
# @return [Fixnum] Hash code
|
376
386
|
def hash
|
377
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, compliance, compression_level, password, pretty_format, save_format].hash
|
387
|
+
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_ambiguous_text_font, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, compliance, compression_level, password, pretty_format, save_format].hash
|
378
388
|
end
|
379
389
|
|
380
390
|
# Builds the object from hash
|
@@ -60,6 +60,9 @@ module AsposeWordsCloud
|
|
60
60
|
# The default value is Aspose.Words.Saving.ImlRenderingMode.InkML.
|
61
61
|
attr_accessor :iml_rendering_mode
|
62
62
|
|
63
|
+
# Gets or sets a value indicating whether the font attributes will be changed according to the character code being used.
|
64
|
+
attr_accessor :update_ambiguous_text_font
|
65
|
+
|
63
66
|
# Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving.
|
64
67
|
# Default value is false.
|
65
68
|
attr_accessor :update_created_time_property
|
@@ -193,6 +196,7 @@ module AsposeWordsCloud
|
|
193
196
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
194
197
|
:'file_name' => :'FileName',
|
195
198
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
199
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
196
200
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
197
201
|
:'update_fields' => :'UpdateFields',
|
198
202
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -233,6 +237,7 @@ module AsposeWordsCloud
|
|
233
237
|
:'dml_rendering_mode' => :'String',
|
234
238
|
:'file_name' => :'String',
|
235
239
|
:'iml_rendering_mode' => :'String',
|
240
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
236
241
|
:'update_created_time_property' => :'BOOLEAN',
|
237
242
|
:'update_fields' => :'BOOLEAN',
|
238
243
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -301,6 +306,10 @@ module AsposeWordsCloud
|
|
301
306
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
302
307
|
end
|
303
308
|
|
309
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
310
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
311
|
+
end
|
312
|
+
|
304
313
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
305
314
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
306
315
|
end
|
@@ -554,6 +563,7 @@ module AsposeWordsCloud
|
|
554
563
|
dml_rendering_mode == other.dml_rendering_mode &&
|
555
564
|
file_name == other.file_name &&
|
556
565
|
iml_rendering_mode == other.iml_rendering_mode &&
|
566
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
557
567
|
update_created_time_property == other.update_created_time_property &&
|
558
568
|
update_fields == other.update_fields &&
|
559
569
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -592,7 +602,7 @@ module AsposeWordsCloud
|
|
592
602
|
# Calculates hash code according to all attributes.
|
593
603
|
# @return [Fixnum] Hash code
|
594
604
|
def hash
|
595
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, horizontal_resolution, image_brightness, image_color_mode, image_contrast, paper_color, pixel_format, resolution, scale, use_anti_aliasing, use_high_quality_rendering, vertical_resolution, image_height, image_width, use_gdi_emf_renderer, save_format].hash
|
605
|
+
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_ambiguous_text_font, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, horizontal_resolution, image_brightness, image_color_mode, image_contrast, paper_color, pixel_format, resolution, scale, use_anti_aliasing, use_high_quality_rendering, vertical_resolution, image_height, image_width, use_gdi_emf_renderer, save_format].hash
|
596
606
|
end
|
597
607
|
|
598
608
|
# Builds the object from hash
|
@@ -60,6 +60,9 @@ module AsposeWordsCloud
|
|
60
60
|
# The default value is Aspose.Words.Saving.ImlRenderingMode.InkML.
|
61
61
|
attr_accessor :iml_rendering_mode
|
62
62
|
|
63
|
+
# Gets or sets a value indicating whether the font attributes will be changed according to the character code being used.
|
64
|
+
attr_accessor :update_ambiguous_text_font
|
65
|
+
|
63
66
|
# Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving.
|
64
67
|
# Default value is false.
|
65
68
|
attr_accessor :update_created_time_property
|
@@ -197,6 +200,7 @@ module AsposeWordsCloud
|
|
197
200
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
198
201
|
:'file_name' => :'FileName',
|
199
202
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
203
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
200
204
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
201
205
|
:'update_fields' => :'UpdateFields',
|
202
206
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -238,6 +242,7 @@ module AsposeWordsCloud
|
|
238
242
|
:'dml_rendering_mode' => :'String',
|
239
243
|
:'file_name' => :'String',
|
240
244
|
:'iml_rendering_mode' => :'String',
|
245
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
241
246
|
:'update_created_time_property' => :'BOOLEAN',
|
242
247
|
:'update_fields' => :'BOOLEAN',
|
243
248
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -307,6 +312,10 @@ module AsposeWordsCloud
|
|
307
312
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
308
313
|
end
|
309
314
|
|
315
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
316
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
317
|
+
end
|
318
|
+
|
310
319
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
311
320
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
312
321
|
end
|
@@ -564,6 +573,7 @@ module AsposeWordsCloud
|
|
564
573
|
dml_rendering_mode == other.dml_rendering_mode &&
|
565
574
|
file_name == other.file_name &&
|
566
575
|
iml_rendering_mode == other.iml_rendering_mode &&
|
576
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
567
577
|
update_created_time_property == other.update_created_time_property &&
|
568
578
|
update_fields == other.update_fields &&
|
569
579
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -603,7 +613,7 @@ module AsposeWordsCloud
|
|
603
613
|
# Calculates hash code according to all attributes.
|
604
614
|
# @return [Fixnum] Hash code
|
605
615
|
def hash
|
606
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, css_class_names_prefix, encoding, export_embedded_css, export_embedded_fonts, export_embedded_images, export_form_fields, font_format, id_prefix, page_horizontal_alignment, page_margins, resources_folder, resources_folder_alias, save_font_face_css_separately, show_page_border, use_target_machine_fonts, save_format].hash
|
616
|
+
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_ambiguous_text_font, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, css_class_names_prefix, encoding, export_embedded_css, export_embedded_fonts, export_embedded_images, export_form_fields, font_format, id_prefix, page_horizontal_alignment, page_margins, resources_folder, resources_folder_alias, save_font_face_css_separately, show_page_border, use_target_machine_fonts, save_format].hash
|
607
617
|
end
|
608
618
|
|
609
619
|
# Builds the object from hash
|
@@ -60,6 +60,9 @@ module AsposeWordsCloud
|
|
60
60
|
# The default value is Aspose.Words.Saving.ImlRenderingMode.InkML.
|
61
61
|
attr_accessor :iml_rendering_mode
|
62
62
|
|
63
|
+
# Gets or sets a value indicating whether the font attributes will be changed according to the character code being used.
|
64
|
+
attr_accessor :update_ambiguous_text_font
|
65
|
+
|
63
66
|
# Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving.
|
64
67
|
# Default value is false.
|
65
68
|
attr_accessor :update_created_time_property
|
@@ -250,6 +253,7 @@ module AsposeWordsCloud
|
|
250
253
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
251
254
|
:'file_name' => :'FileName',
|
252
255
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
256
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
253
257
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
254
258
|
:'update_fields' => :'UpdateFields',
|
255
259
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -308,6 +312,7 @@ module AsposeWordsCloud
|
|
308
312
|
:'dml_rendering_mode' => :'String',
|
309
313
|
:'file_name' => :'String',
|
310
314
|
:'iml_rendering_mode' => :'String',
|
315
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
311
316
|
:'update_created_time_property' => :'BOOLEAN',
|
312
317
|
:'update_fields' => :'BOOLEAN',
|
313
318
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -394,6 +399,10 @@ module AsposeWordsCloud
|
|
394
399
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
395
400
|
end
|
396
401
|
|
402
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
403
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
404
|
+
end
|
405
|
+
|
397
406
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
398
407
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
399
408
|
end
|
@@ -783,6 +792,7 @@ module AsposeWordsCloud
|
|
783
792
|
dml_rendering_mode == other.dml_rendering_mode &&
|
784
793
|
file_name == other.file_name &&
|
785
794
|
iml_rendering_mode == other.iml_rendering_mode &&
|
795
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
786
796
|
update_created_time_property == other.update_created_time_property &&
|
787
797
|
update_fields == other.update_fields &&
|
788
798
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -839,7 +849,7 @@ module AsposeWordsCloud
|
|
839
849
|
# Calculates hash code according to all attributes.
|
840
850
|
# @return [Fixnum] Hash code
|
841
851
|
def hash
|
842
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, allow_negative_indent, css_class_name_prefix, css_style_sheet_file_name, css_style_sheet_type, document_split_criteria, document_split_heading_level, encoding, export_document_properties, export_drop_down_form_field_as_text, export_font_resources, export_fonts_as_base64, export_headers_footers_mode, export_images_as_base64, export_language_information, export_list_labels, export_original_url_for_linked_images, export_page_margins, export_page_setup, export_relative_font_size, export_roundtrip_information, export_text_input_form_field_as_text, export_toc_page_numbers, export_xhtml_transitional, font_resources_subsetting_size_threshold, fonts_folder, fonts_folder_alias, html_version, image_resolution, images_folder, images_folder_alias, metafile_format, office_math_output_mode, pretty_format, replace_backslash_with_yen_sign, resolve_font_names, resource_folder, resource_folder_alias, scale_image_to_shape_size, table_width_output_mode, save_format].hash
|
852
|
+
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_ambiguous_text_font, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, allow_negative_indent, css_class_name_prefix, css_style_sheet_file_name, css_style_sheet_type, document_split_criteria, document_split_heading_level, encoding, export_document_properties, export_drop_down_form_field_as_text, export_font_resources, export_fonts_as_base64, export_headers_footers_mode, export_images_as_base64, export_language_information, export_list_labels, export_original_url_for_linked_images, export_page_margins, export_page_setup, export_relative_font_size, export_roundtrip_information, export_text_input_form_field_as_text, export_toc_page_numbers, export_xhtml_transitional, font_resources_subsetting_size_threshold, fonts_folder, fonts_folder_alias, html_version, image_resolution, images_folder, images_folder_alias, metafile_format, office_math_output_mode, pretty_format, replace_backslash_with_yen_sign, resolve_font_names, resource_folder, resource_folder_alias, scale_image_to_shape_size, table_width_output_mode, save_format].hash
|
843
853
|
end
|
844
854
|
|
845
855
|
# Builds the object from hash
|
@@ -60,6 +60,9 @@ module AsposeWordsCloud
|
|
60
60
|
# The default value is Aspose.Words.Saving.ImlRenderingMode.InkML.
|
61
61
|
attr_accessor :iml_rendering_mode
|
62
62
|
|
63
|
+
# Gets or sets a value indicating whether the font attributes will be changed according to the character code being used.
|
64
|
+
attr_accessor :update_ambiguous_text_font
|
65
|
+
|
63
66
|
# Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving.
|
64
67
|
# Default value is false.
|
65
68
|
attr_accessor :update_created_time_property
|
@@ -193,6 +196,7 @@ module AsposeWordsCloud
|
|
193
196
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
194
197
|
:'file_name' => :'FileName',
|
195
198
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
199
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
196
200
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
197
201
|
:'update_fields' => :'UpdateFields',
|
198
202
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -233,6 +237,7 @@ module AsposeWordsCloud
|
|
233
237
|
:'dml_rendering_mode' => :'String',
|
234
238
|
:'file_name' => :'String',
|
235
239
|
:'iml_rendering_mode' => :'String',
|
240
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
236
241
|
:'update_created_time_property' => :'BOOLEAN',
|
237
242
|
:'update_fields' => :'BOOLEAN',
|
238
243
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -301,6 +306,10 @@ module AsposeWordsCloud
|
|
301
306
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
302
307
|
end
|
303
308
|
|
309
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
310
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
311
|
+
end
|
312
|
+
|
304
313
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
305
314
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
306
315
|
end
|
@@ -554,6 +563,7 @@ module AsposeWordsCloud
|
|
554
563
|
dml_rendering_mode == other.dml_rendering_mode &&
|
555
564
|
file_name == other.file_name &&
|
556
565
|
iml_rendering_mode == other.iml_rendering_mode &&
|
566
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
557
567
|
update_created_time_property == other.update_created_time_property &&
|
558
568
|
update_fields == other.update_fields &&
|
559
569
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -592,7 +602,7 @@ module AsposeWordsCloud
|
|
592
602
|
# Calculates hash code according to all attributes.
|
593
603
|
# @return [Fixnum] Hash code
|
594
604
|
def hash
|
595
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, horizontal_resolution, image_brightness, image_color_mode, image_contrast, paper_color, pixel_format, resolution, scale, use_anti_aliasing, use_high_quality_rendering, vertical_resolution, image_height, image_width, use_gdi_emf_renderer, save_format].hash
|
605
|
+
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_ambiguous_text_font, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, horizontal_resolution, image_brightness, image_color_mode, image_contrast, paper_color, pixel_format, resolution, scale, use_anti_aliasing, use_high_quality_rendering, vertical_resolution, image_height, image_width, use_gdi_emf_renderer, save_format].hash
|
596
606
|
end
|
597
607
|
|
598
608
|
# Builds the object from hash
|
@@ -60,6 +60,9 @@ module AsposeWordsCloud
|
|
60
60
|
# The default value is Aspose.Words.Saving.ImlRenderingMode.InkML.
|
61
61
|
attr_accessor :iml_rendering_mode
|
62
62
|
|
63
|
+
# Gets or sets a value indicating whether the font attributes will be changed according to the character code being used.
|
64
|
+
attr_accessor :update_ambiguous_text_font
|
65
|
+
|
63
66
|
# Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving.
|
64
67
|
# Default value is false.
|
65
68
|
attr_accessor :update_created_time_property
|
@@ -132,6 +135,7 @@ module AsposeWordsCloud
|
|
132
135
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
133
136
|
:'file_name' => :'FileName',
|
134
137
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
138
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
135
139
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
136
140
|
:'update_fields' => :'UpdateFields',
|
137
141
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -156,6 +160,7 @@ module AsposeWordsCloud
|
|
156
160
|
:'dml_rendering_mode' => :'String',
|
157
161
|
:'file_name' => :'String',
|
158
162
|
:'iml_rendering_mode' => :'String',
|
163
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
159
164
|
:'update_created_time_property' => :'BOOLEAN',
|
160
165
|
:'update_fields' => :'BOOLEAN',
|
161
166
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -208,6 +213,10 @@ module AsposeWordsCloud
|
|
208
213
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
209
214
|
end
|
210
215
|
|
216
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
217
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
218
|
+
end
|
219
|
+
|
211
220
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
212
221
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
213
222
|
end
|
@@ -365,6 +374,7 @@ module AsposeWordsCloud
|
|
365
374
|
dml_rendering_mode == other.dml_rendering_mode &&
|
366
375
|
file_name == other.file_name &&
|
367
376
|
iml_rendering_mode == other.iml_rendering_mode &&
|
377
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
368
378
|
update_created_time_property == other.update_created_time_property &&
|
369
379
|
update_fields == other.update_fields &&
|
370
380
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -387,7 +397,7 @@ module AsposeWordsCloud
|
|
387
397
|
# Calculates hash code according to all attributes.
|
388
398
|
# @return [Fixnum] Hash code
|
389
399
|
def hash
|
390
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, encoding, export_headers_footers_mode, force_page_breaks, paragraph_break, table_content_alignment, save_format].hash
|
400
|
+
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_ambiguous_text_font, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, encoding, export_headers_footers_mode, force_page_breaks, paragraph_break, table_content_alignment, save_format].hash
|
391
401
|
end
|
392
402
|
|
393
403
|
# Builds the object from hash
|
@@ -60,6 +60,9 @@ module AsposeWordsCloud
|
|
60
60
|
# The default value is Aspose.Words.Saving.ImlRenderingMode.InkML.
|
61
61
|
attr_accessor :iml_rendering_mode
|
62
62
|
|
63
|
+
# Gets or sets a value indicating whether the font attributes will be changed according to the character code being used.
|
64
|
+
attr_accessor :update_ambiguous_text_font
|
65
|
+
|
63
66
|
# Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving.
|
64
67
|
# Default value is false.
|
65
68
|
attr_accessor :update_created_time_property
|
@@ -254,6 +257,7 @@ module AsposeWordsCloud
|
|
254
257
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
255
258
|
:'file_name' => :'FileName',
|
256
259
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
260
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
257
261
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
258
262
|
:'update_fields' => :'UpdateFields',
|
259
263
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -313,6 +317,7 @@ module AsposeWordsCloud
|
|
313
317
|
:'dml_rendering_mode' => :'String',
|
314
318
|
:'file_name' => :'String',
|
315
319
|
:'iml_rendering_mode' => :'String',
|
320
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
316
321
|
:'update_created_time_property' => :'BOOLEAN',
|
317
322
|
:'update_fields' => :'BOOLEAN',
|
318
323
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -400,6 +405,10 @@ module AsposeWordsCloud
|
|
400
405
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
401
406
|
end
|
402
407
|
|
408
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
409
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
410
|
+
end
|
411
|
+
|
403
412
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
404
413
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
405
414
|
end
|
@@ -793,6 +802,7 @@ module AsposeWordsCloud
|
|
793
802
|
dml_rendering_mode == other.dml_rendering_mode &&
|
794
803
|
file_name == other.file_name &&
|
795
804
|
iml_rendering_mode == other.iml_rendering_mode &&
|
805
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
796
806
|
update_created_time_property == other.update_created_time_property &&
|
797
807
|
update_fields == other.update_fields &&
|
798
808
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -850,7 +860,7 @@ module AsposeWordsCloud
|
|
850
860
|
# Calculates hash code according to all attributes.
|
851
861
|
# @return [Fixnum] Hash code
|
852
862
|
def hash
|
853
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, allow_negative_indent, css_class_name_prefix, css_style_sheet_file_name, css_style_sheet_type, document_split_criteria, document_split_heading_level, encoding, export_document_properties, export_drop_down_form_field_as_text, export_font_resources, export_fonts_as_base64, export_headers_footers_mode, export_images_as_base64, export_language_information, export_list_labels, export_original_url_for_linked_images, export_page_margins, export_page_setup, export_relative_font_size, export_roundtrip_information, export_text_input_form_field_as_text, export_toc_page_numbers, export_xhtml_transitional, font_resources_subsetting_size_threshold, fonts_folder, fonts_folder_alias, html_version, image_resolution, images_folder, images_folder_alias, metafile_format, office_math_output_mode, pretty_format, replace_backslash_with_yen_sign, resolve_font_names, resource_folder, resource_folder_alias, scale_image_to_shape_size, table_width_output_mode, export_cid_urls_for_mhtml_resources, save_format].hash
|
863
|
+
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, iml_rendering_mode, update_ambiguous_text_font, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, zip_output, allow_negative_indent, css_class_name_prefix, css_style_sheet_file_name, css_style_sheet_type, document_split_criteria, document_split_heading_level, encoding, export_document_properties, export_drop_down_form_field_as_text, export_font_resources, export_fonts_as_base64, export_headers_footers_mode, export_images_as_base64, export_language_information, export_list_labels, export_original_url_for_linked_images, export_page_margins, export_page_setup, export_relative_font_size, export_roundtrip_information, export_text_input_form_field_as_text, export_toc_page_numbers, export_xhtml_transitional, font_resources_subsetting_size_threshold, fonts_folder, fonts_folder_alias, html_version, image_resolution, images_folder, images_folder_alias, metafile_format, office_math_output_mode, pretty_format, replace_backslash_with_yen_sign, resolve_font_names, resource_folder, resource_folder_alias, scale_image_to_shape_size, table_width_output_mode, export_cid_urls_for_mhtml_resources, save_format].hash
|
854
864
|
end
|
855
865
|
|
856
866
|
# Builds the object from hash
|