aspose_words_cloud 25.2 → 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 +42 -3
- 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
|
@@ -142,6 +145,7 @@ module AsposeWordsCloud
|
|
142
145
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
143
146
|
:'file_name' => :'FileName',
|
144
147
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
148
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
145
149
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
146
150
|
:'update_fields' => :'UpdateFields',
|
147
151
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -169,6 +173,7 @@ module AsposeWordsCloud
|
|
169
173
|
:'dml_rendering_mode' => :'String',
|
170
174
|
:'file_name' => :'String',
|
171
175
|
:'iml_rendering_mode' => :'String',
|
176
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
172
177
|
:'update_created_time_property' => :'BOOLEAN',
|
173
178
|
:'update_fields' => :'BOOLEAN',
|
174
179
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -224,6 +229,10 @@ module AsposeWordsCloud
|
|
224
229
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
225
230
|
end
|
226
231
|
|
232
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
233
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
234
|
+
end
|
235
|
+
|
227
236
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
228
237
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
229
238
|
end
|
@@ -377,6 +386,7 @@ module AsposeWordsCloud
|
|
377
386
|
dml_rendering_mode == other.dml_rendering_mode &&
|
378
387
|
file_name == other.file_name &&
|
379
388
|
iml_rendering_mode == other.iml_rendering_mode &&
|
389
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
380
390
|
update_created_time_property == other.update_created_time_property &&
|
381
391
|
update_fields == other.update_fields &&
|
382
392
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -402,7 +412,7 @@ module AsposeWordsCloud
|
|
402
412
|
# Calculates hash code according to all attributes.
|
403
413
|
# @return [Fixnum] Hash code
|
404
414
|
def hash
|
405
|
-
[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, add_bidi_marks, max_characters_per_line, preserve_table_layout, simplify_list_labels, save_format].hash
|
415
|
+
[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, add_bidi_marks, max_characters_per_line, preserve_table_layout, simplify_list_labels, save_format].hash
|
406
416
|
end
|
407
417
|
|
408
418
|
# 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
|
@@ -203,6 +206,7 @@ module AsposeWordsCloud
|
|
203
206
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
204
207
|
:'file_name' => :'FileName',
|
205
208
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
209
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
206
210
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
207
211
|
:'update_fields' => :'UpdateFields',
|
208
212
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -246,6 +250,7 @@ module AsposeWordsCloud
|
|
246
250
|
:'dml_rendering_mode' => :'String',
|
247
251
|
:'file_name' => :'String',
|
248
252
|
:'iml_rendering_mode' => :'String',
|
253
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
249
254
|
:'update_created_time_property' => :'BOOLEAN',
|
250
255
|
:'update_fields' => :'BOOLEAN',
|
251
256
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -317,6 +322,10 @@ module AsposeWordsCloud
|
|
317
322
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
318
323
|
end
|
319
324
|
|
325
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
326
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
327
|
+
end
|
328
|
+
|
320
329
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
321
330
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
322
331
|
end
|
@@ -614,6 +623,7 @@ module AsposeWordsCloud
|
|
614
623
|
dml_rendering_mode == other.dml_rendering_mode &&
|
615
624
|
file_name == other.file_name &&
|
616
625
|
iml_rendering_mode == other.iml_rendering_mode &&
|
626
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
617
627
|
update_created_time_property == other.update_created_time_property &&
|
618
628
|
update_fields == other.update_fields &&
|
619
629
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -655,7 +665,7 @@ module AsposeWordsCloud
|
|
655
665
|
# Calculates hash code according to all attributes.
|
656
666
|
# @return [Fixnum] Hash code
|
657
667
|
def hash
|
658
|
-
[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, threshold_for_floyd_steinberg_dithering, tiff_binarization_method, tiff_compression, save_format].hash
|
668
|
+
[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, threshold_for_floyd_steinberg_dithering, tiff_binarization_method, tiff_compression, save_format].hash
|
659
669
|
end
|
660
670
|
|
661
671
|
# 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
|
@@ -117,6 +120,7 @@ module AsposeWordsCloud
|
|
117
120
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
118
121
|
:'file_name' => :'FileName',
|
119
122
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
123
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
120
124
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
121
125
|
:'update_fields' => :'UpdateFields',
|
122
126
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -137,6 +141,7 @@ module AsposeWordsCloud
|
|
137
141
|
:'dml_rendering_mode' => :'String',
|
138
142
|
:'file_name' => :'String',
|
139
143
|
:'iml_rendering_mode' => :'String',
|
144
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
140
145
|
:'update_created_time_property' => :'BOOLEAN',
|
141
146
|
:'update_fields' => :'BOOLEAN',
|
142
147
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -185,6 +190,10 @@ module AsposeWordsCloud
|
|
185
190
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
186
191
|
end
|
187
192
|
|
193
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
194
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
195
|
+
end
|
196
|
+
|
188
197
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
189
198
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
190
199
|
end
|
@@ -294,6 +303,7 @@ module AsposeWordsCloud
|
|
294
303
|
dml_rendering_mode == other.dml_rendering_mode &&
|
295
304
|
file_name == other.file_name &&
|
296
305
|
iml_rendering_mode == other.iml_rendering_mode &&
|
306
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
297
307
|
update_created_time_property == other.update_created_time_property &&
|
298
308
|
update_fields == other.update_fields &&
|
299
309
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -312,7 +322,7 @@ module AsposeWordsCloud
|
|
312
322
|
# Calculates hash code according to all attributes.
|
313
323
|
# @return [Fixnum] Hash code
|
314
324
|
def hash
|
315
|
-
[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, pretty_format, save_format].hash
|
325
|
+
[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, pretty_format, save_format].hash
|
316
326
|
end
|
317
327
|
|
318
328
|
# 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
|
@@ -149,6 +152,7 @@ module AsposeWordsCloud
|
|
149
152
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
150
153
|
:'file_name' => :'FileName',
|
151
154
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
155
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
152
156
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
153
157
|
:'update_fields' => :'UpdateFields',
|
154
158
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -177,6 +181,7 @@ module AsposeWordsCloud
|
|
177
181
|
:'dml_rendering_mode' => :'String',
|
178
182
|
:'file_name' => :'String',
|
179
183
|
:'iml_rendering_mode' => :'String',
|
184
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
180
185
|
:'update_created_time_property' => :'BOOLEAN',
|
181
186
|
:'update_fields' => :'BOOLEAN',
|
182
187
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -233,6 +238,10 @@ module AsposeWordsCloud
|
|
233
238
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
234
239
|
end
|
235
240
|
|
241
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
242
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
243
|
+
end
|
244
|
+
|
236
245
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
237
246
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
238
247
|
end
|
@@ -406,6 +415,7 @@ module AsposeWordsCloud
|
|
406
415
|
dml_rendering_mode == other.dml_rendering_mode &&
|
407
416
|
file_name == other.file_name &&
|
408
417
|
iml_rendering_mode == other.iml_rendering_mode &&
|
418
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
409
419
|
update_created_time_property == other.update_created_time_property &&
|
410
420
|
update_fields == other.update_fields &&
|
411
421
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -432,7 +442,7 @@ module AsposeWordsCloud
|
|
432
442
|
# Calculates hash code according to all attributes.
|
433
443
|
# @return [Fixnum] Hash code
|
434
444
|
def hash
|
435
|
-
[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, resources_folder, resources_folder_alias, save_format].hash
|
445
|
+
[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, resources_folder, resources_folder_alias, save_format].hash
|
436
446
|
end
|
437
447
|
|
438
448
|
# 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
|
@@ -127,6 +130,7 @@ module AsposeWordsCloud
|
|
127
130
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
128
131
|
:'file_name' => :'FileName',
|
129
132
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
133
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
130
134
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
131
135
|
:'update_fields' => :'UpdateFields',
|
132
136
|
:'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',
|
@@ -199,6 +204,10 @@ module AsposeWordsCloud
|
|
199
204
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
200
205
|
end
|
201
206
|
|
207
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
208
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
209
|
+
end
|
210
|
+
|
202
211
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
203
212
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
204
213
|
end
|
@@ -316,6 +325,7 @@ module AsposeWordsCloud
|
|
316
325
|
dml_rendering_mode == other.dml_rendering_mode &&
|
317
326
|
file_name == other.file_name &&
|
318
327
|
iml_rendering_mode == other.iml_rendering_mode &&
|
328
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
319
329
|
update_created_time_property == other.update_created_time_property &&
|
320
330
|
update_fields == other.update_fields &&
|
321
331
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -336,7 +346,7 @@ module AsposeWordsCloud
|
|
336
346
|
# Calculates hash code according to all attributes.
|
337
347
|
# @return [Fixnum] Hash code
|
338
348
|
def hash
|
339
|
-
[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, images_folder, images_folder_alias, replace_backslash_with_yen_sign, save_format].hash
|
349
|
+
[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, images_folder, images_folder_alias, replace_backslash_with_yen_sign, save_format].hash
|
340
350
|
end
|
341
351
|
|
342
352
|
# 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
|
@@ -127,6 +130,7 @@ module AsposeWordsCloud
|
|
127
130
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
128
131
|
:'file_name' => :'FileName',
|
129
132
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
133
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
130
134
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
131
135
|
:'update_fields' => :'UpdateFields',
|
132
136
|
:'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',
|
@@ -199,6 +204,10 @@ module AsposeWordsCloud
|
|
199
204
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
200
205
|
end
|
201
206
|
|
207
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
208
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
209
|
+
end
|
210
|
+
|
202
211
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
203
212
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
204
213
|
end
|
@@ -316,6 +325,7 @@ module AsposeWordsCloud
|
|
316
325
|
dml_rendering_mode == other.dml_rendering_mode &&
|
317
326
|
file_name == other.file_name &&
|
318
327
|
iml_rendering_mode == other.iml_rendering_mode &&
|
328
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
319
329
|
update_created_time_property == other.update_created_time_property &&
|
320
330
|
update_fields == other.update_fields &&
|
321
331
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -336,7 +346,7 @@ module AsposeWordsCloud
|
|
336
346
|
# Calculates hash code according to all attributes.
|
337
347
|
# @return [Fixnum] Hash code
|
338
348
|
def hash
|
339
|
-
[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, images_folder, images_folder_alias, replace_backslash_with_yen_sign, save_format].hash
|
349
|
+
[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, images_folder, images_folder_alias, replace_backslash_with_yen_sign, save_format].hash
|
340
350
|
end
|
341
351
|
|
342
352
|
# 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
|
@@ -155,6 +158,7 @@ module AsposeWordsCloud
|
|
155
158
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
156
159
|
:'file_name' => :'FileName',
|
157
160
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
161
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
158
162
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
159
163
|
:'update_fields' => :'UpdateFields',
|
160
164
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -186,6 +190,7 @@ module AsposeWordsCloud
|
|
186
190
|
:'dml_rendering_mode' => :'String',
|
187
191
|
:'file_name' => :'String',
|
188
192
|
:'iml_rendering_mode' => :'String',
|
193
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
189
194
|
:'update_created_time_property' => :'BOOLEAN',
|
190
195
|
:'update_fields' => :'BOOLEAN',
|
191
196
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -245,6 +250,10 @@ module AsposeWordsCloud
|
|
245
250
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
246
251
|
end
|
247
252
|
|
253
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
254
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
255
|
+
end
|
256
|
+
|
248
257
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
249
258
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
250
259
|
end
|
@@ -430,6 +439,7 @@ module AsposeWordsCloud
|
|
430
439
|
dml_rendering_mode == other.dml_rendering_mode &&
|
431
440
|
file_name == other.file_name &&
|
432
441
|
iml_rendering_mode == other.iml_rendering_mode &&
|
442
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
433
443
|
update_created_time_property == other.update_created_time_property &&
|
434
444
|
update_fields == other.update_fields &&
|
435
445
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -459,7 +469,7 @@ module AsposeWordsCloud
|
|
459
469
|
# Calculates hash code according to all attributes.
|
460
470
|
# @return [Fixnum] Hash code
|
461
471
|
def hash
|
462
|
-
[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, bookmarks_outline_level, digital_signature_details, headings_outline_levels, outline_options, use_book_fold_printing_settings, save_format].hash
|
472
|
+
[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, bookmarks_outline_level, digital_signature_details, headings_outline_levels, outline_options, use_book_fold_printing_settings, save_format].hash
|
463
473
|
end
|
464
474
|
|
465
475
|
# Builds the object from hash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aspose_words_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '25.
|
4
|
+
version: '25.4'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- YaroslawEkimov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|