aspose_words_cloud 21.6.0 → 21.7.0
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.rb +2 -0
- data/lib/aspose_words_cloud/api/words_api.rb +68 -7
- data/lib/aspose_words_cloud/models/bmp_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/doc_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/epub_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/fixed_page_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/image_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/ooxml_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/pcl_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/pdf_save_options_data.rb +11 -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/public_key_response.rb +221 -0
- data/lib/aspose_words_cloud/models/requests/append_document_online_request.rb +2 -2
- data/lib/aspose_words_cloud/models/requests/get_document_field_names_online_request.rb +11 -11
- data/lib/aspose_words_cloud/models/requests/get_public_key_request.rb +114 -0
- data/lib/aspose_words_cloud/models/rtf_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/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 +22 -1
- data/lib/aspose_words_cloud/models/tiff_save_options_data.rb +11 -1
- data/lib/aspose_words_cloud/models/txt_save_options_base_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_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 +4 -2
@@ -0,0 +1,114 @@
|
|
1
|
+
# ------------------------------------------------------------------------------------
|
2
|
+
# <copyright company="Aspose" file="get_public_key_request.rb">
|
3
|
+
# Copyright (c) 2021 Aspose.Words for Cloud
|
4
|
+
# </copyright>
|
5
|
+
# <summary>
|
6
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
# of this software and associated documentation files (the "Software"), to deal
|
8
|
+
# in the Software without restriction, including without limitation the rights
|
9
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
# copies of the Software, and to permit persons to whom the Software is
|
11
|
+
# furnished to do so, subject to the following conditions:
|
12
|
+
#
|
13
|
+
# The above copyright notice and this permission notice shall be included in all
|
14
|
+
# copies or substantial portions of the Software.
|
15
|
+
#
|
16
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
22
|
+
# SOFTWARE.
|
23
|
+
# </summary>
|
24
|
+
# ------------------------------------------------------------------------------------
|
25
|
+
|
26
|
+
module AsposeWordsCloud
|
27
|
+
|
28
|
+
#
|
29
|
+
# Request model for get_public_key operation.
|
30
|
+
#
|
31
|
+
class GetPublicKeyRequest
|
32
|
+
# Creating batch part from request
|
33
|
+
def to_batch_part(api_client)
|
34
|
+
# resource path
|
35
|
+
local_var_path = '/words/encryption/publickey'[7..-1]
|
36
|
+
local_var_path = local_var_path.sub('//', '/')
|
37
|
+
|
38
|
+
# query parameters
|
39
|
+
query_params = {}
|
40
|
+
|
41
|
+
if query_params
|
42
|
+
query_params.each { |key, value| local_var_path = api_client.add_param_to_query(local_var_path, key, value) }
|
43
|
+
end
|
44
|
+
|
45
|
+
header_params = {}
|
46
|
+
|
47
|
+
# form parameters
|
48
|
+
form_params = {}
|
49
|
+
|
50
|
+
# http body (model)
|
51
|
+
post_body = nil
|
52
|
+
body = nil
|
53
|
+
part = ""
|
54
|
+
part.concat("GET".force_encoding('UTF-8'))
|
55
|
+
part.concat(" ".force_encoding('UTF-8'))
|
56
|
+
part.concat(local_var_path.force_encoding('UTF-8'))
|
57
|
+
part.concat(" \r\n".force_encoding('UTF-8'))
|
58
|
+
|
59
|
+
header_params.each_pair {|key, value| part.concat(key.dup.force_encoding('UTF-8') , ": ".force_encoding('UTF-8'), value.dup.force_encoding('UTF-8'), "\r\n".force_encoding('UTF-8')) }
|
60
|
+
part.concat("\r\n".force_encoding('UTF-8'))
|
61
|
+
if body
|
62
|
+
if body.is_a?(Hash)
|
63
|
+
body.each do |key, value|
|
64
|
+
part.concat(value, "\r\n")
|
65
|
+
end
|
66
|
+
else
|
67
|
+
part.concat(body)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
part
|
71
|
+
end
|
72
|
+
|
73
|
+
def create_http_request(api_client)
|
74
|
+
# resource path
|
75
|
+
local_var_path = '/words/encryption/publickey'[1..-1]
|
76
|
+
local_var_path = local_var_path.sub('//', '/')
|
77
|
+
|
78
|
+
# query parameters
|
79
|
+
query_params = {}
|
80
|
+
|
81
|
+
# header parameters
|
82
|
+
header_params = {}
|
83
|
+
# HTTP header 'Content-Type'
|
84
|
+
header_params['Content-Type'] = api_client.select_header_content_type(['application/xml', 'application/json'])
|
85
|
+
|
86
|
+
# form parameters
|
87
|
+
form_params = {}
|
88
|
+
|
89
|
+
# http body (model)
|
90
|
+
post_body = nil
|
91
|
+
body = api_client.build_request_body(header_params, form_params, post_body)
|
92
|
+
{
|
93
|
+
'method': :GET,
|
94
|
+
'path': local_var_path,
|
95
|
+
'header_params': header_params,
|
96
|
+
'query_params': query_params,
|
97
|
+
'body': body,
|
98
|
+
'auth_names': ['JWT']
|
99
|
+
}
|
100
|
+
end
|
101
|
+
|
102
|
+
#
|
103
|
+
# Helper method to convert first letter to downcase
|
104
|
+
#
|
105
|
+
def downcase_first_letter(str)
|
106
|
+
str[0].downcase + str[1..-1]
|
107
|
+
end
|
108
|
+
|
109
|
+
# Get response type
|
110
|
+
def get_response_type
|
111
|
+
'PublicKeyResponse'
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
@@ -48,6 +48,9 @@ module AsposeWordsCloud
|
|
48
48
|
# Gets or sets the name of destination file.
|
49
49
|
attr_accessor :file_name
|
50
50
|
|
51
|
+
# Gets or sets the value determining how ink (InkML) objects are rendered.
|
52
|
+
attr_accessor :iml_rendering_mode
|
53
|
+
|
51
54
|
# Gets or sets the format of save.
|
52
55
|
attr_accessor :save_format
|
53
56
|
|
@@ -114,6 +117,7 @@ module AsposeWordsCloud
|
|
114
117
|
:'dml_effects_rendering_mode' => :'DmlEffectsRenderingMode',
|
115
118
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
116
119
|
:'file_name' => :'FileName',
|
120
|
+
:'iml_rendering_mode' => :'ImlRenderingMode',
|
117
121
|
:'save_format' => :'SaveFormat',
|
118
122
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
119
123
|
:'update_fields' => :'UpdateFields',
|
@@ -137,6 +141,7 @@ module AsposeWordsCloud
|
|
137
141
|
:'dml_effects_rendering_mode' => :'String',
|
138
142
|
:'dml_rendering_mode' => :'String',
|
139
143
|
:'file_name' => :'String',
|
144
|
+
:'iml_rendering_mode' => :'String',
|
140
145
|
:'save_format' => :'String',
|
141
146
|
:'update_created_time_property' => :'BOOLEAN',
|
142
147
|
:'update_fields' => :'BOOLEAN',
|
@@ -183,6 +188,10 @@ module AsposeWordsCloud
|
|
183
188
|
self.file_name = attributes[:'FileName']
|
184
189
|
end
|
185
190
|
|
191
|
+
if attributes.key?(:'ImlRenderingMode')
|
192
|
+
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
193
|
+
end
|
194
|
+
|
186
195
|
if attributes.key?(:'SaveFormat')
|
187
196
|
self.save_format = attributes[:'SaveFormat']
|
188
197
|
end
|
@@ -270,6 +279,7 @@ module AsposeWordsCloud
|
|
270
279
|
dml_effects_rendering_mode == other.dml_effects_rendering_mode &&
|
271
280
|
dml_rendering_mode == other.dml_rendering_mode &&
|
272
281
|
file_name == other.file_name &&
|
282
|
+
iml_rendering_mode == other.iml_rendering_mode &&
|
273
283
|
save_format == other.save_format &&
|
274
284
|
update_created_time_property == other.update_created_time_property &&
|
275
285
|
update_fields == other.update_fields &&
|
@@ -292,7 +302,7 @@ module AsposeWordsCloud
|
|
292
302
|
# Calculates hash code according to all attributes.
|
293
303
|
# @return [Fixnum] Hash code
|
294
304
|
def hash
|
295
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, zip_output, export_compact_size, export_images_for_old_readers, pretty_format, save_images_as_wmf].hash
|
305
|
+
[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, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, zip_output, export_compact_size, export_images_for_old_readers, pretty_format, save_images_as_wmf].hash
|
296
306
|
end
|
297
307
|
|
298
308
|
# Builds the object from hash
|
@@ -48,6 +48,9 @@ module AsposeWordsCloud
|
|
48
48
|
# Gets or sets the name of destination file.
|
49
49
|
attr_accessor :file_name
|
50
50
|
|
51
|
+
# Gets or sets the value determining how ink (InkML) objects are rendered.
|
52
|
+
attr_accessor :iml_rendering_mode
|
53
|
+
|
51
54
|
# Gets or sets the format of save.
|
52
55
|
attr_accessor :save_format
|
53
56
|
|
@@ -102,6 +105,7 @@ module AsposeWordsCloud
|
|
102
105
|
:'dml_effects_rendering_mode' => :'DmlEffectsRenderingMode',
|
103
106
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
104
107
|
:'file_name' => :'FileName',
|
108
|
+
:'iml_rendering_mode' => :'ImlRenderingMode',
|
105
109
|
:'save_format' => :'SaveFormat',
|
106
110
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
107
111
|
:'update_fields' => :'UpdateFields',
|
@@ -121,6 +125,7 @@ module AsposeWordsCloud
|
|
121
125
|
:'dml_effects_rendering_mode' => :'String',
|
122
126
|
:'dml_rendering_mode' => :'String',
|
123
127
|
:'file_name' => :'String',
|
128
|
+
:'iml_rendering_mode' => :'String',
|
124
129
|
:'save_format' => :'String',
|
125
130
|
:'update_created_time_property' => :'BOOLEAN',
|
126
131
|
:'update_fields' => :'BOOLEAN',
|
@@ -163,6 +168,10 @@ module AsposeWordsCloud
|
|
163
168
|
self.file_name = attributes[:'FileName']
|
164
169
|
end
|
165
170
|
|
171
|
+
if attributes.key?(:'ImlRenderingMode')
|
172
|
+
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
173
|
+
end
|
174
|
+
|
166
175
|
if attributes.key?(:'SaveFormat')
|
167
176
|
self.save_format = attributes[:'SaveFormat']
|
168
177
|
end
|
@@ -234,6 +243,7 @@ module AsposeWordsCloud
|
|
234
243
|
dml_effects_rendering_mode == other.dml_effects_rendering_mode &&
|
235
244
|
dml_rendering_mode == other.dml_rendering_mode &&
|
236
245
|
file_name == other.file_name &&
|
246
|
+
iml_rendering_mode == other.iml_rendering_mode &&
|
237
247
|
save_format == other.save_format &&
|
238
248
|
update_created_time_property == other.update_created_time_property &&
|
239
249
|
update_fields == other.update_fields &&
|
@@ -252,7 +262,7 @@ module AsposeWordsCloud
|
|
252
262
|
# Calculates hash code according to all attributes.
|
253
263
|
# @return [Fixnum] Hash code
|
254
264
|
def hash
|
255
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, zip_output].hash
|
265
|
+
[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, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, zip_output].hash
|
256
266
|
end
|
257
267
|
|
258
268
|
# Builds the object from hash
|
@@ -48,6 +48,9 @@ module AsposeWordsCloud
|
|
48
48
|
# Gets or sets the name of destination file.
|
49
49
|
attr_accessor :file_name
|
50
50
|
|
51
|
+
# Gets or sets the value determining how ink (InkML) objects are rendered.
|
52
|
+
attr_accessor :iml_rendering_mode
|
53
|
+
|
51
54
|
# Gets or sets the format of save.
|
52
55
|
attr_accessor :save_format
|
53
56
|
|
@@ -144,6 +147,7 @@ module AsposeWordsCloud
|
|
144
147
|
:'dml_effects_rendering_mode' => :'DmlEffectsRenderingMode',
|
145
148
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
146
149
|
:'file_name' => :'FileName',
|
150
|
+
:'iml_rendering_mode' => :'ImlRenderingMode',
|
147
151
|
:'save_format' => :'SaveFormat',
|
148
152
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
149
153
|
:'update_fields' => :'UpdateFields',
|
@@ -176,6 +180,7 @@ module AsposeWordsCloud
|
|
176
180
|
:'dml_effects_rendering_mode' => :'String',
|
177
181
|
:'dml_rendering_mode' => :'String',
|
178
182
|
:'file_name' => :'String',
|
183
|
+
:'iml_rendering_mode' => :'String',
|
179
184
|
:'save_format' => :'String',
|
180
185
|
:'update_created_time_property' => :'BOOLEAN',
|
181
186
|
:'update_fields' => :'BOOLEAN',
|
@@ -231,6 +236,10 @@ module AsposeWordsCloud
|
|
231
236
|
self.file_name = attributes[:'FileName']
|
232
237
|
end
|
233
238
|
|
239
|
+
if attributes.key?(:'ImlRenderingMode')
|
240
|
+
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
241
|
+
end
|
242
|
+
|
234
243
|
if attributes.key?(:'SaveFormat')
|
235
244
|
self.save_format = attributes[:'SaveFormat']
|
236
245
|
end
|
@@ -354,6 +363,7 @@ module AsposeWordsCloud
|
|
354
363
|
dml_effects_rendering_mode == other.dml_effects_rendering_mode &&
|
355
364
|
dml_rendering_mode == other.dml_rendering_mode &&
|
356
365
|
file_name == other.file_name &&
|
366
|
+
iml_rendering_mode == other.iml_rendering_mode &&
|
357
367
|
save_format == other.save_format &&
|
358
368
|
update_created_time_property == other.update_created_time_property &&
|
359
369
|
update_fields == other.update_fields &&
|
@@ -385,7 +395,7 @@ module AsposeWordsCloud
|
|
385
395
|
# Calculates hash code according to all attributes.
|
386
396
|
# @return [Fixnum] Hash code
|
387
397
|
def hash
|
388
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, zip_output, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, export_embedded_images, fit_to_view_port, resources_folder, resources_folder_alias, show_page_border, text_output_mode].hash
|
398
|
+
[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, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, zip_output, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, export_embedded_images, fit_to_view_port, resources_folder, resources_folder_alias, show_page_border, text_output_mode].hash
|
389
399
|
end
|
390
400
|
|
391
401
|
# Builds the object from hash
|
@@ -48,6 +48,9 @@ module AsposeWordsCloud
|
|
48
48
|
# Gets or sets the name of destination file.
|
49
49
|
attr_accessor :file_name
|
50
50
|
|
51
|
+
# Gets or sets the value determining how ink (InkML) objects are rendered.
|
52
|
+
attr_accessor :iml_rendering_mode
|
53
|
+
|
51
54
|
# Gets or sets the format of save.
|
52
55
|
attr_accessor :save_format
|
53
56
|
|
@@ -89,6 +92,10 @@ module AsposeWordsCloud
|
|
89
92
|
# The default value is true.
|
90
93
|
attr_accessor :add_bidi_marks
|
91
94
|
|
95
|
+
# Gets or sets an integer value that specifies the maximum number of characters per one line.
|
96
|
+
# The default value is 0, that means no limit.
|
97
|
+
attr_accessor :max_characters_per_line
|
98
|
+
|
92
99
|
# Gets or sets a value indicating whether the program should attempt to preserve layout of tables when saving in the plain text format.
|
93
100
|
attr_accessor :preserve_table_layout
|
94
101
|
|
@@ -126,6 +133,7 @@ module AsposeWordsCloud
|
|
126
133
|
:'dml_effects_rendering_mode' => :'DmlEffectsRenderingMode',
|
127
134
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
128
135
|
:'file_name' => :'FileName',
|
136
|
+
:'iml_rendering_mode' => :'ImlRenderingMode',
|
129
137
|
:'save_format' => :'SaveFormat',
|
130
138
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
131
139
|
:'update_fields' => :'UpdateFields',
|
@@ -138,6 +146,7 @@ module AsposeWordsCloud
|
|
138
146
|
:'force_page_breaks' => :'ForcePageBreaks',
|
139
147
|
:'paragraph_break' => :'ParagraphBreak',
|
140
148
|
:'add_bidi_marks' => :'AddBidiMarks',
|
149
|
+
:'max_characters_per_line' => :'MaxCharactersPerLine',
|
141
150
|
:'preserve_table_layout' => :'PreserveTableLayout',
|
142
151
|
:'simplify_list_labels' => :'SimplifyListLabels'
|
143
152
|
}
|
@@ -152,6 +161,7 @@ module AsposeWordsCloud
|
|
152
161
|
:'dml_effects_rendering_mode' => :'String',
|
153
162
|
:'dml_rendering_mode' => :'String',
|
154
163
|
:'file_name' => :'String',
|
164
|
+
:'iml_rendering_mode' => :'String',
|
155
165
|
:'save_format' => :'String',
|
156
166
|
:'update_created_time_property' => :'BOOLEAN',
|
157
167
|
:'update_fields' => :'BOOLEAN',
|
@@ -164,6 +174,7 @@ module AsposeWordsCloud
|
|
164
174
|
:'force_page_breaks' => :'BOOLEAN',
|
165
175
|
:'paragraph_break' => :'String',
|
166
176
|
:'add_bidi_marks' => :'BOOLEAN',
|
177
|
+
:'max_characters_per_line' => :'Integer',
|
167
178
|
:'preserve_table_layout' => :'BOOLEAN',
|
168
179
|
:'simplify_list_labels' => :'BOOLEAN'
|
169
180
|
}
|
@@ -201,6 +212,10 @@ module AsposeWordsCloud
|
|
201
212
|
self.file_name = attributes[:'FileName']
|
202
213
|
end
|
203
214
|
|
215
|
+
if attributes.key?(:'ImlRenderingMode')
|
216
|
+
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
217
|
+
end
|
218
|
+
|
204
219
|
if attributes.key?(:'SaveFormat')
|
205
220
|
self.save_format = attributes[:'SaveFormat']
|
206
221
|
end
|
@@ -249,6 +264,10 @@ module AsposeWordsCloud
|
|
249
264
|
self.add_bidi_marks = attributes[:'AddBidiMarks']
|
250
265
|
end
|
251
266
|
|
267
|
+
if attributes.key?(:'MaxCharactersPerLine')
|
268
|
+
self.max_characters_per_line = attributes[:'MaxCharactersPerLine']
|
269
|
+
end
|
270
|
+
|
252
271
|
if attributes.key?(:'PreserveTableLayout')
|
253
272
|
self.preserve_table_layout = attributes[:'PreserveTableLayout']
|
254
273
|
end
|
@@ -316,6 +335,7 @@ module AsposeWordsCloud
|
|
316
335
|
dml_effects_rendering_mode == other.dml_effects_rendering_mode &&
|
317
336
|
dml_rendering_mode == other.dml_rendering_mode &&
|
318
337
|
file_name == other.file_name &&
|
338
|
+
iml_rendering_mode == other.iml_rendering_mode &&
|
319
339
|
save_format == other.save_format &&
|
320
340
|
update_created_time_property == other.update_created_time_property &&
|
321
341
|
update_fields == other.update_fields &&
|
@@ -328,6 +348,7 @@ module AsposeWordsCloud
|
|
328
348
|
force_page_breaks == other.force_page_breaks &&
|
329
349
|
paragraph_break == other.paragraph_break &&
|
330
350
|
add_bidi_marks == other.add_bidi_marks &&
|
351
|
+
max_characters_per_line == other.max_characters_per_line &&
|
331
352
|
preserve_table_layout == other.preserve_table_layout &&
|
332
353
|
simplify_list_labels == other.simplify_list_labels
|
333
354
|
end
|
@@ -341,7 +362,7 @@ module AsposeWordsCloud
|
|
341
362
|
# Calculates hash code according to all attributes.
|
342
363
|
# @return [Fixnum] Hash code
|
343
364
|
def hash
|
344
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, zip_output, encoding, export_headers_footers_mode, force_page_breaks, paragraph_break, add_bidi_marks, preserve_table_layout, simplify_list_labels].hash
|
365
|
+
[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, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, 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].hash
|
345
366
|
end
|
346
367
|
|
347
368
|
# Builds the object from hash
|
@@ -48,6 +48,9 @@ module AsposeWordsCloud
|
|
48
48
|
# Gets or sets the name of destination file.
|
49
49
|
attr_accessor :file_name
|
50
50
|
|
51
|
+
# Gets or sets the value determining how ink (InkML) objects are rendered.
|
52
|
+
attr_accessor :iml_rendering_mode
|
53
|
+
|
51
54
|
# Gets or sets the format of save.
|
52
55
|
attr_accessor :save_format
|
53
56
|
|
@@ -181,6 +184,7 @@ module AsposeWordsCloud
|
|
181
184
|
:'dml_effects_rendering_mode' => :'DmlEffectsRenderingMode',
|
182
185
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
183
186
|
:'file_name' => :'FileName',
|
187
|
+
:'iml_rendering_mode' => :'ImlRenderingMode',
|
184
188
|
:'save_format' => :'SaveFormat',
|
185
189
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
186
190
|
:'update_fields' => :'UpdateFields',
|
@@ -223,6 +227,7 @@ module AsposeWordsCloud
|
|
223
227
|
:'dml_effects_rendering_mode' => :'String',
|
224
228
|
:'dml_rendering_mode' => :'String',
|
225
229
|
:'file_name' => :'String',
|
230
|
+
:'iml_rendering_mode' => :'String',
|
226
231
|
:'save_format' => :'String',
|
227
232
|
:'update_created_time_property' => :'BOOLEAN',
|
228
233
|
:'update_fields' => :'BOOLEAN',
|
@@ -288,6 +293,10 @@ module AsposeWordsCloud
|
|
288
293
|
self.file_name = attributes[:'FileName']
|
289
294
|
end
|
290
295
|
|
296
|
+
if attributes.key?(:'ImlRenderingMode')
|
297
|
+
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
298
|
+
end
|
299
|
+
|
291
300
|
if attributes.key?(:'SaveFormat')
|
292
301
|
self.save_format = attributes[:'SaveFormat']
|
293
302
|
end
|
@@ -451,6 +460,7 @@ module AsposeWordsCloud
|
|
451
460
|
dml_effects_rendering_mode == other.dml_effects_rendering_mode &&
|
452
461
|
dml_rendering_mode == other.dml_rendering_mode &&
|
453
462
|
file_name == other.file_name &&
|
463
|
+
iml_rendering_mode == other.iml_rendering_mode &&
|
454
464
|
save_format == other.save_format &&
|
455
465
|
update_created_time_property == other.update_created_time_property &&
|
456
466
|
update_fields == other.update_fields &&
|
@@ -492,7 +502,7 @@ module AsposeWordsCloud
|
|
492
502
|
# Calculates hash code according to all attributes.
|
493
503
|
# @return [Fixnum] Hash code
|
494
504
|
def hash
|
495
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, zip_output, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, graphics_quality_options, horizontal_resolution, image_brightness, image_color_mode, image_contrast, paper_color, pixel_format, resolution, scale, use_anti_aliasing, use_gdi_emf_renderer, use_high_quality_rendering, vertical_resolution, threshold_for_floyd_steinberg_dithering, tiff_binarization_method, tiff_compression].hash
|
505
|
+
[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, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, zip_output, color_mode, jpeg_quality, metafile_rendering_options, numeral_format, optimize_output, page_count, page_index, graphics_quality_options, horizontal_resolution, image_brightness, image_color_mode, image_contrast, paper_color, pixel_format, resolution, scale, use_anti_aliasing, use_gdi_emf_renderer, use_high_quality_rendering, vertical_resolution, threshold_for_floyd_steinberg_dithering, tiff_binarization_method, tiff_compression].hash
|
496
506
|
end
|
497
507
|
|
498
508
|
# Builds the object from hash
|
@@ -48,6 +48,9 @@ module AsposeWordsCloud
|
|
48
48
|
# Gets or sets the name of destination file.
|
49
49
|
attr_accessor :file_name
|
50
50
|
|
51
|
+
# Gets or sets the value determining how ink (InkML) objects are rendered.
|
52
|
+
attr_accessor :iml_rendering_mode
|
53
|
+
|
51
54
|
# Gets or sets the format of save.
|
52
55
|
attr_accessor :save_format
|
53
56
|
|
@@ -116,6 +119,7 @@ module AsposeWordsCloud
|
|
116
119
|
:'dml_effects_rendering_mode' => :'DmlEffectsRenderingMode',
|
117
120
|
:'dml_rendering_mode' => :'DmlRenderingMode',
|
118
121
|
:'file_name' => :'FileName',
|
122
|
+
:'iml_rendering_mode' => :'ImlRenderingMode',
|
119
123
|
:'save_format' => :'SaveFormat',
|
120
124
|
:'update_created_time_property' => :'UpdateCreatedTimeProperty',
|
121
125
|
:'update_fields' => :'UpdateFields',
|
@@ -139,6 +143,7 @@ module AsposeWordsCloud
|
|
139
143
|
:'dml_effects_rendering_mode' => :'String',
|
140
144
|
:'dml_rendering_mode' => :'String',
|
141
145
|
:'file_name' => :'String',
|
146
|
+
:'iml_rendering_mode' => :'String',
|
142
147
|
:'save_format' => :'String',
|
143
148
|
:'update_created_time_property' => :'BOOLEAN',
|
144
149
|
:'update_fields' => :'BOOLEAN',
|
@@ -185,6 +190,10 @@ module AsposeWordsCloud
|
|
185
190
|
self.file_name = attributes[:'FileName']
|
186
191
|
end
|
187
192
|
|
193
|
+
if attributes.key?(:'ImlRenderingMode')
|
194
|
+
self.iml_rendering_mode = attributes[:'ImlRenderingMode']
|
195
|
+
end
|
196
|
+
|
188
197
|
if attributes.key?(:'SaveFormat')
|
189
198
|
self.save_format = attributes[:'SaveFormat']
|
190
199
|
end
|
@@ -288,6 +297,7 @@ module AsposeWordsCloud
|
|
288
297
|
dml_effects_rendering_mode == other.dml_effects_rendering_mode &&
|
289
298
|
dml_rendering_mode == other.dml_rendering_mode &&
|
290
299
|
file_name == other.file_name &&
|
300
|
+
iml_rendering_mode == other.iml_rendering_mode &&
|
291
301
|
save_format == other.save_format &&
|
292
302
|
update_created_time_property == other.update_created_time_property &&
|
293
303
|
update_fields == other.update_fields &&
|
@@ -310,7 +320,7 @@ module AsposeWordsCloud
|
|
310
320
|
# Calculates hash code according to all attributes.
|
311
321
|
# @return [Fixnum] Hash code
|
312
322
|
def hash
|
313
|
-
[allow_embedding_post_script_fonts, custom_time_zone_info_data, dml3_d_effects_rendering_mode, dml_effects_rendering_mode, dml_rendering_mode, file_name, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, zip_output, encoding, export_headers_footers_mode, force_page_breaks, paragraph_break].hash
|
323
|
+
[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, save_format, update_created_time_property, update_fields, update_last_printed_property, update_last_saved_time_property, update_sdt_content, zip_output, encoding, export_headers_footers_mode, force_page_breaks, paragraph_break].hash
|
314
324
|
end
|
315
325
|
|
316
326
|
# Builds the object from hash
|