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
|
@@ -128,6 +131,7 @@ module AsposeWordsCloud
|
|
128
131
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
129
132
|
:'file_name' => :'FileName',
|
130
133
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
134
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
131
135
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
132
136
|
:'update_fields' => :'UpdateFields',
|
133
137
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -151,6 +155,7 @@ module AsposeWordsCloud
|
|
151
155
|
:'dml_rendering_mode' => :'String',
|
152
156
|
:'file_name' => :'String',
|
153
157
|
:'iml_rendering_mode' => :'String',
|
158
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
154
159
|
:'update_created_time_property' => :'BOOLEAN',
|
155
160
|
:'update_fields' => :'BOOLEAN',
|
156
161
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -202,6 +207,10 @@ module AsposeWordsCloud
|
|
202
207
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
203
208
|
end
|
204
209
|
|
210
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
211
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
212
|
+
end
|
213
|
+
|
205
214
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
206
215
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
207
216
|
end
|
@@ -339,6 +348,7 @@ module AsposeWordsCloud
|
|
339
348
|
dml_rendering_mode == other.dml_rendering_mode &&
|
340
349
|
file_name == other.file_name &&
|
341
350
|
iml_rendering_mode == other.iml_rendering_mode &&
|
351
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
342
352
|
update_created_time_property == other.update_created_time_property &&
|
343
353
|
update_fields == other.update_fields &&
|
344
354
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -360,7 +370,7 @@ module AsposeWordsCloud
|
|
360
370
|
# Calculates hash code according to all attributes.
|
361
371
|
# @return [Fixnum] Hash code
|
362
372
|
def hash
|
363
|
-
[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, is_strict_schema11, measure_unit, password, pretty_format, save_format].hash
|
373
|
+
[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, is_strict_schema11, measure_unit, password, pretty_format, save_format].hash
|
364
374
|
end
|
365
375
|
|
366
376
|
# 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
|
@@ -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
|
@@ -128,6 +131,7 @@ module AsposeWordsCloud
|
|
128
131
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
129
132
|
:'file_name' => :'FileName',
|
130
133
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
134
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
131
135
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
132
136
|
:'update_fields' => :'UpdateFields',
|
133
137
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -151,6 +155,7 @@ module AsposeWordsCloud
|
|
151
155
|
:'dml_rendering_mode' => :'String',
|
152
156
|
:'file_name' => :'String',
|
153
157
|
:'iml_rendering_mode' => :'String',
|
158
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
154
159
|
:'update_created_time_property' => :'BOOLEAN',
|
155
160
|
:'update_fields' => :'BOOLEAN',
|
156
161
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -202,6 +207,10 @@ module AsposeWordsCloud
|
|
202
207
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
203
208
|
end
|
204
209
|
|
210
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
211
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
212
|
+
end
|
213
|
+
|
205
214
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
206
215
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
207
216
|
end
|
@@ -339,6 +348,7 @@ module AsposeWordsCloud
|
|
339
348
|
dml_rendering_mode == other.dml_rendering_mode &&
|
340
349
|
file_name == other.file_name &&
|
341
350
|
iml_rendering_mode == other.iml_rendering_mode &&
|
351
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
342
352
|
update_created_time_property == other.update_created_time_property &&
|
343
353
|
update_fields == other.update_fields &&
|
344
354
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -360,7 +370,7 @@ module AsposeWordsCloud
|
|
360
370
|
# Calculates hash code according to all attributes.
|
361
371
|
# @return [Fixnum] Hash code
|
362
372
|
def hash
|
363
|
-
[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, is_strict_schema11, measure_unit, password, pretty_format, save_format].hash
|
373
|
+
[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, is_strict_schema11, measure_unit, password, pretty_format, save_format].hash
|
364
374
|
end
|
365
375
|
|
366
376
|
# Builds the object from hash
|
@@ -364,7 +364,7 @@ module AsposeWordsCloud
|
|
364
364
|
return false unless orientation_validator.valid?(@orientation)
|
365
365
|
page_number_style_validator = EnumAttributeValidator.new('String', ["Arabic", "UppercaseRoman", "LowercaseRoman", "UppercaseLetter", "LowercaseLetter", "Ordinal", "Number", "OrdinalText", "Hex", "ChicagoManual", "Kanji", "KanjiDigit", "AiueoHalfWidth", "IrohaHalfWidth", "ArabicFullWidth", "ArabicHalfWidth", "KanjiTraditional", "KanjiTraditional2", "NumberInCircle", "DecimalFullWidth", "Aiueo", "Iroha", "LeadingZero", "Bullet", "Ganada", "Chosung", "GB1", "GB2", "GB3", "GB4", "Zodiac1", "Zodiac2", "Zodiac3", "TradChinNum1", "TradChinNum2", "TradChinNum3", "TradChinNum4", "SimpChinNum1", "SimpChinNum2", "SimpChinNum3", "SimpChinNum4", "HanjaRead", "HanjaReadDigit", "Hangul", "Hanja", "Hebrew1", "Arabic1", "Hebrew2", "Arabic2", "HindiLetter1", "HindiLetter2", "HindiArabic", "HindiCardinalText", "ThaiLetter", "ThaiArabic", "ThaiCardinalText", "VietCardinalText", "NumberInDash", "LowercaseRussian", "UppercaseRussian", "None", "Custom"])
|
366
366
|
return false unless page_number_style_validator.valid?(@page_number_style)
|
367
|
-
paper_size_validator = EnumAttributeValidator.new('String', ["A3", "A4", "A5", "B4", "B5", "Executive", "Folio", "Ledger", "Legal", "Letter", "EnvelopeDL", "Quarto", "Statement", "Tabloid", "Paper10x14", "Paper11x17", "Number10Envelope", "Custom"])
|
367
|
+
paper_size_validator = EnumAttributeValidator.new('String', ["A3", "A4", "A5", "B4", "B5", "Executive", "Folio", "Ledger", "Legal", "Letter", "EnvelopeDL", "Quarto", "Statement", "Tabloid", "Paper10x14", "Paper11x17", "Number10Envelope", "JisB4", "JisB5", "Custom"])
|
368
368
|
return false unless paper_size_validator.valid?(@paper_size)
|
369
369
|
section_start_validator = EnumAttributeValidator.new('String', ["Continuous", "NewColumn", "NewPage", "EvenPage", "OddPage"])
|
370
370
|
return false unless section_start_validator.valid?(@section_start)
|
@@ -447,7 +447,7 @@ module AsposeWordsCloud
|
|
447
447
|
# Custom attribute writer method checking allowed values (enum).
|
448
448
|
# @param [Object] paper_size Object to be assigned
|
449
449
|
def paper_size=(paper_size)
|
450
|
-
validator = EnumAttributeValidator.new('String', ["A3", "A4", "A5", "B4", "B5", "Executive", "Folio", "Ledger", "Legal", "Letter", "EnvelopeDL", "Quarto", "Statement", "Tabloid", "Paper10x14", "Paper11x17", "Number10Envelope", "Custom"])
|
450
|
+
validator = EnumAttributeValidator.new('String', ["A3", "A4", "A5", "B4", "B5", "Executive", "Folio", "Ledger", "Legal", "Letter", "EnvelopeDL", "Quarto", "Statement", "Tabloid", "Paper10x14", "Paper11x17", "Number10Envelope", "JisB4", "JisB5", "Custom"])
|
451
451
|
if paper_size.to_i == 0
|
452
452
|
unless validator.valid?(paper_size)
|
453
453
|
raise ArgumentError, "invalid value for 'paper_size', must be one of #{validator.allowable_values}."
|
@@ -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
|
@@ -148,6 +151,7 @@ module AsposeWordsCloud
|
|
148
151
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
149
152
|
:'file_name' => :'FileName',
|
150
153
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
154
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
151
155
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
152
156
|
:'update_fields' => :'UpdateFields',
|
153
157
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -176,6 +180,7 @@ module AsposeWordsCloud
|
|
176
180
|
:'dml_rendering_mode' => :'String',
|
177
181
|
:'file_name' => :'String',
|
178
182
|
:'iml_rendering_mode' => :'String',
|
183
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
179
184
|
:'update_created_time_property' => :'BOOLEAN',
|
180
185
|
:'update_fields' => :'BOOLEAN',
|
181
186
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -232,6 +237,10 @@ module AsposeWordsCloud
|
|
232
237
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
233
238
|
end
|
234
239
|
|
240
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
241
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
242
|
+
end
|
243
|
+
|
235
244
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
236
245
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
237
246
|
end
|
@@ -405,6 +414,7 @@ module AsposeWordsCloud
|
|
405
414
|
dml_rendering_mode == other.dml_rendering_mode &&
|
406
415
|
file_name == other.file_name &&
|
407
416
|
iml_rendering_mode == other.iml_rendering_mode &&
|
417
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
408
418
|
update_created_time_property == other.update_created_time_property &&
|
409
419
|
update_fields == other.update_fields &&
|
410
420
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -431,7 +441,7 @@ module AsposeWordsCloud
|
|
431
441
|
# Calculates hash code according to all attributes.
|
432
442
|
# @return [Fixnum] Hash code
|
433
443
|
def hash
|
434
|
-
[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, falllback_font_name, rasterize_transformed_elements, save_format].hash
|
444
|
+
[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, falllback_font_name, rasterize_transformed_elements, save_format].hash
|
435
445
|
end
|
436
446
|
|
437
447
|
# 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
|
@@ -105,6 +108,12 @@ module AsposeWordsCloud
|
|
105
108
|
# Gets or sets the 0-based index of the first page to render.
|
106
109
|
attr_accessor :page_index
|
107
110
|
|
111
|
+
# Gets or sets a value determining how attachments are embedded to the PDF document.
|
112
|
+
# Default value is None and attachments are not embedded.
|
113
|
+
# PDF/A-1, PDF/A-2 and regular PDF/A-4 (not PDF/A-4f) standards do not allow embedded files.
|
114
|
+
# None value will be used automatically.
|
115
|
+
attr_accessor :attachments_embedding_mode
|
116
|
+
|
108
117
|
# Gets or sets a value determining whether or not to cache graphics placed in document's background.
|
109
118
|
# Default value is true and background graphics are written to the PDF document as an xObject. When the value is false background graphics are not cached. Some shapes are not supported for caching(shapes with fields, bookmarks, HRefs). Document background graphic is various shapes, charts, images placed in the footer or header,
|
110
119
|
# well as background and border of a page.
|
@@ -251,6 +260,7 @@ module AsposeWordsCloud
|
|
251
260
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
252
261
|
:'file_name' => :'FileName',
|
253
262
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
263
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
254
264
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
255
265
|
:'update_fields' => :'UpdateFields',
|
256
266
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -263,6 +273,7 @@ module AsposeWordsCloud
|
|
263
273
|
:'optimize_output' => :'OptimizeOutput',
|
264
274
|
:'page_count' => :'PageCount',
|
265
275
|
:'page_index' => :'PageIndex',
|
276
|
+
:'attachments_embedding_mode' => :'AttachmentsEmbeddingMode',
|
266
277
|
:'cache_background_graphics' => :'CacheBackgroundGraphics',
|
267
278
|
:'compliance' => :'Compliance',
|
268
279
|
:'create_note_hyperlinks' => :'CreateNoteHyperlinks',
|
@@ -306,6 +317,7 @@ module AsposeWordsCloud
|
|
306
317
|
:'dml_rendering_mode' => :'String',
|
307
318
|
:'file_name' => :'String',
|
308
319
|
:'iml_rendering_mode' => :'String',
|
320
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
309
321
|
:'update_created_time_property' => :'BOOLEAN',
|
310
322
|
:'update_fields' => :'BOOLEAN',
|
311
323
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -318,6 +330,7 @@ module AsposeWordsCloud
|
|
318
330
|
:'optimize_output' => :'BOOLEAN',
|
319
331
|
:'page_count' => :'Integer',
|
320
332
|
:'page_index' => :'Integer',
|
333
|
+
:'attachments_embedding_mode' => :'String',
|
321
334
|
:'cache_background_graphics' => :'BOOLEAN',
|
322
335
|
:'compliance' => :'String',
|
323
336
|
:'create_note_hyperlinks' => :'BOOLEAN',
|
@@ -389,6 +402,10 @@ module AsposeWordsCloud
|
|
389
402
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
390
403
|
end
|
391
404
|
|
405
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
406
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
407
|
+
end
|
408
|
+
|
392
409
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
393
410
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
394
411
|
end
|
@@ -437,6 +454,10 @@ module AsposeWordsCloud
|
|
437
454
|
self.page_index = attributes[:'PageIndex']
|
438
455
|
end
|
439
456
|
|
457
|
+
if attributes.key?(:'AttachmentsEmbeddingMode')
|
458
|
+
self.attachments_embedding_mode = attributes[:'AttachmentsEmbeddingMode']
|
459
|
+
end
|
460
|
+
|
440
461
|
if attributes.key?(:'CacheBackgroundGraphics')
|
441
462
|
self.cache_background_graphics = attributes[:'CacheBackgroundGraphics']
|
442
463
|
end
|
@@ -569,7 +590,9 @@ module AsposeWordsCloud
|
|
569
590
|
return false unless color_mode_validator.valid?(@color_mode)
|
570
591
|
numeral_format_validator = EnumAttributeValidator.new('String', ["European", "ArabicIndic", "EasternArabicIndic", "Context", "System"])
|
571
592
|
return false unless numeral_format_validator.valid?(@numeral_format)
|
572
|
-
|
593
|
+
attachments_embedding_mode_validator = EnumAttributeValidator.new('String', ["None", "Annotations", "DocumentEmbeddedFiles"])
|
594
|
+
return false unless attachments_embedding_mode_validator.valid?(@attachments_embedding_mode)
|
595
|
+
compliance_validator = EnumAttributeValidator.new('String', ["Pdf17", "Pdf20", "PdfA1a", "PdfA1b", "PdfA2a", "PdfA2u", "PdfA3a", "PdfA3u", "PdfA4", "PdfA4f", "PdfA4Ua2", "PdfUa1", "PdfUa2"])
|
573
596
|
return false unless compliance_validator.valid?(@compliance)
|
574
597
|
custom_properties_export_validator = EnumAttributeValidator.new('String', ["None", "Standard", "Metadata"])
|
575
598
|
return false unless custom_properties_export_validator.valid?(@custom_properties_export)
|
@@ -673,10 +696,24 @@ module AsposeWordsCloud
|
|
673
696
|
end
|
674
697
|
end
|
675
698
|
|
699
|
+
# Custom attribute writer method checking allowed values (enum).
|
700
|
+
# @param [Object] attachments_embedding_mode Object to be assigned
|
701
|
+
def attachments_embedding_mode=(attachments_embedding_mode)
|
702
|
+
validator = EnumAttributeValidator.new('String', ["None", "Annotations", "DocumentEmbeddedFiles"])
|
703
|
+
if attachments_embedding_mode.to_i == 0
|
704
|
+
unless validator.valid?(attachments_embedding_mode)
|
705
|
+
raise ArgumentError, "invalid value for 'attachments_embedding_mode', must be one of #{validator.allowable_values}."
|
706
|
+
end
|
707
|
+
@attachments_embedding_mode = attachments_embedding_mode
|
708
|
+
else
|
709
|
+
@attachments_embedding_mode = validator.allowable_values[attachments_embedding_mode.to_i]
|
710
|
+
end
|
711
|
+
end
|
712
|
+
|
676
713
|
# Custom attribute writer method checking allowed values (enum).
|
677
714
|
# @param [Object] compliance Object to be assigned
|
678
715
|
def compliance=(compliance)
|
679
|
-
validator = EnumAttributeValidator.new('String', ["Pdf17", "Pdf20", "PdfA1a", "PdfA1b", "PdfA2a", "PdfA2u", "PdfA4", "PdfA4Ua2", "PdfUa1", "PdfUa2"])
|
716
|
+
validator = EnumAttributeValidator.new('String', ["Pdf17", "Pdf20", "PdfA1a", "PdfA1b", "PdfA2a", "PdfA2u", "PdfA3a", "PdfA3u", "PdfA4", "PdfA4f", "PdfA4Ua2", "PdfUa1", "PdfUa2"])
|
680
717
|
if compliance.to_i == 0
|
681
718
|
unless validator.valid?(compliance)
|
682
719
|
raise ArgumentError, "invalid value for 'compliance', must be one of #{validator.allowable_values}."
|
@@ -798,6 +835,7 @@ module AsposeWordsCloud
|
|
798
835
|
dml_rendering_mode == other.dml_rendering_mode &&
|
799
836
|
file_name == other.file_name &&
|
800
837
|
iml_rendering_mode == other.iml_rendering_mode &&
|
838
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
801
839
|
update_created_time_property == other.update_created_time_property &&
|
802
840
|
update_fields == other.update_fields &&
|
803
841
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -810,6 +848,7 @@ module AsposeWordsCloud
|
|
810
848
|
optimize_output == other.optimize_output &&
|
811
849
|
page_count == other.page_count &&
|
812
850
|
page_index == other.page_index &&
|
851
|
+
attachments_embedding_mode == other.attachments_embedding_mode &&
|
813
852
|
cache_background_graphics == other.cache_background_graphics &&
|
814
853
|
compliance == other.compliance &&
|
815
854
|
create_note_hyperlinks == other.create_note_hyperlinks &&
|
@@ -851,7 +890,7 @@ module AsposeWordsCloud
|
|
851
890
|
# Calculates hash code according to all attributes.
|
852
891
|
# @return [Fixnum] Hash code
|
853
892
|
def hash
|
854
|
-
[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, cache_background_graphics, compliance, create_note_hyperlinks, custom_properties_export, digital_signature_details, display_doc_title, downsample_options, embed_attachments, embed_full_fonts, encryption_details, export_document_structure, export_language_to_span_tag, font_embedding_mode, header_footer_bookmarks_export_mode, image_color_space_export_mode, image_compression, interpolate_images, open_hyperlinks_in_new_window, outline_options, page_mode, preblend_images, preserve_form_fields, render_choice_form_field_border, text_compression, use_book_fold_printing_settings, use_core_fonts, use_sdt_tag_as_form_field_name, zoom_behavior, zoom_factor, save_format].hash
|
893
|
+
[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, attachments_embedding_mode, cache_background_graphics, compliance, create_note_hyperlinks, custom_properties_export, digital_signature_details, display_doc_title, downsample_options, embed_attachments, embed_full_fonts, encryption_details, export_document_structure, export_language_to_span_tag, font_embedding_mode, header_footer_bookmarks_export_mode, image_color_space_export_mode, image_compression, interpolate_images, open_hyperlinks_in_new_window, outline_options, page_mode, preblend_images, preserve_form_fields, render_choice_form_field_border, text_compression, use_book_fold_printing_settings, use_core_fonts, use_sdt_tag_as_form_field_name, zoom_behavior, zoom_factor, save_format].hash
|
855
894
|
end
|
856
895
|
|
857
896
|
# 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
|
@@ -143,6 +146,7 @@ module AsposeWordsCloud
|
|
143
146
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
144
147
|
:'file_name' => :'FileName',
|
145
148
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
149
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
146
150
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
147
151
|
:'update_fields' => :'UpdateFields',
|
148
152
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -170,6 +174,7 @@ module AsposeWordsCloud
|
|
170
174
|
:'dml_rendering_mode' => :'String',
|
171
175
|
:'file_name' => :'String',
|
172
176
|
:'iml_rendering_mode' => :'String',
|
177
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
173
178
|
:'update_created_time_property' => :'BOOLEAN',
|
174
179
|
:'update_fields' => :'BOOLEAN',
|
175
180
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -225,6 +230,10 @@ module AsposeWordsCloud
|
|
225
230
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
226
231
|
end
|
227
232
|
|
233
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
234
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
235
|
+
end
|
236
|
+
|
228
237
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
229
238
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
230
239
|
end
|
@@ -394,6 +403,7 @@ module AsposeWordsCloud
|
|
394
403
|
dml_rendering_mode == other.dml_rendering_mode &&
|
395
404
|
file_name == other.file_name &&
|
396
405
|
iml_rendering_mode == other.iml_rendering_mode &&
|
406
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
397
407
|
update_created_time_property == other.update_created_time_property &&
|
398
408
|
update_fields == other.update_fields &&
|
399
409
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -419,7 +429,7 @@ module AsposeWordsCloud
|
|
419
429
|
# Calculates hash code according to all attributes.
|
420
430
|
# @return [Fixnum] Hash code
|
421
431
|
def hash
|
422
|
-
[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, use_book_fold_printing_settings, save_format].hash
|
432
|
+
[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, use_book_fold_printing_settings, save_format].hash
|
423
433
|
end
|
424
434
|
|
425
435
|
# 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
|
@@ -321,6 +330,7 @@ module AsposeWordsCloud
|
|
321
330
|
dml_rendering_mode == other.dml_rendering_mode &&
|
322
331
|
file_name == other.file_name &&
|
323
332
|
iml_rendering_mode == other.iml_rendering_mode &&
|
333
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
324
334
|
update_created_time_property == other.update_created_time_property &&
|
325
335
|
update_fields == other.update_fields &&
|
326
336
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -342,7 +352,7 @@ module AsposeWordsCloud
|
|
342
352
|
# Calculates hash code according to all attributes.
|
343
353
|
# @return [Fixnum] Hash code
|
344
354
|
def hash
|
345
|
-
[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, export_compact_size, export_images_for_old_readers, pretty_format, save_images_as_wmf, save_format].hash
|
355
|
+
[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, export_compact_size, export_images_for_old_readers, pretty_format, save_images_as_wmf, save_format].hash
|
346
356
|
end
|
347
357
|
|
348
358
|
# 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
|
@@ -169,6 +172,7 @@ module AsposeWordsCloud
|
|
169
172
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
170
173
|
:'file_name' => :'FileName',
|
171
174
|
:'iml_rendering_mode' => :'ImlRenderingMode',
|
175
|
+
:'update_ambiguous_text_font' => :'UpdateAmbiguousTextFont',
|
172
176
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
173
177
|
:'update_fields' => :'UpdateFields',
|
174
178
|
:'update_last_printed_property' => :'UpdateLastPrintedProperty',
|
@@ -203,6 +207,7 @@ module AsposeWordsCloud
|
|
203
207
|
:'dml_rendering_mode' => :'String',
|
204
208
|
:'file_name' => :'String',
|
205
209
|
:'iml_rendering_mode' => :'String',
|
210
|
+
:'update_ambiguous_text_font' => :'BOOLEAN',
|
206
211
|
:'update_created_time_property' => :'BOOLEAN',
|
207
212
|
:'update_fields' => :'BOOLEAN',
|
208
213
|
:'update_last_printed_property' => :'BOOLEAN',
|
@@ -265,6 +270,10 @@ module AsposeWordsCloud
|
|
265
270
|
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
266
271
|
end
|
267
272
|
|
273
|
+
if attributes.key?(:'UpdateAmbiguousTextFont')
|
274
|
+
self.update_ambiguous_text_font = attributes[:'UpdateAmbiguousTextFont']
|
275
|
+
end
|
276
|
+
|
268
277
|
if attributes.key?(:'UpdateCreatedTimeProperty')
|
269
278
|
self.update_created_time_property = attributes[:'UpdateCreatedTimeProperty']
|
270
279
|
end
|
@@ -478,6 +487,7 @@ module AsposeWordsCloud
|
|
478
487
|
dml_rendering_mode == other.dml_rendering_mode &&
|
479
488
|
file_name == other.file_name &&
|
480
489
|
iml_rendering_mode == other.iml_rendering_mode &&
|
490
|
+
update_ambiguous_text_font == other.update_ambiguous_text_font &&
|
481
491
|
update_created_time_property == other.update_created_time_property &&
|
482
492
|
update_fields == other.update_fields &&
|
483
493
|
update_last_printed_property == other.update_last_printed_property &&
|
@@ -510,7 +520,7 @@ module AsposeWordsCloud
|
|
510
520
|
# Calculates hash code according to all attributes.
|
511
521
|
# @return [Fixnum] Hash code
|
512
522
|
def hash
|
513
|
-
[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, export_embedded_images, fit_to_view_port, id_prefix, max_image_resolution, resources_folder, resources_folder_alias, show_page_border, text_output_mode, save_format].hash
|
523
|
+
[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, export_embedded_images, fit_to_view_port, id_prefix, max_image_resolution, resources_folder, resources_folder_alias, show_page_border, text_output_mode, save_format].hash
|
514
524
|
end
|
515
525
|
|
516
526
|
# Builds the object from hash
|