Skip to content

Commit 53a9c94

Browse files
SDK regenerated by CI server [ci skip]
1 parent c291505 commit 53a9c94

29 files changed

+119
-119
lines changed

Sources/AsposeWordsCloud/Api/WordsAPI.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class WordsAPI : Encryptor {
5555
}
5656

5757
// Async representation of acceptAllRevisions method
58-
// Accepts all revisions in the document.
58+
// Accepts all the revisions in the document.
5959
public func acceptAllRevisions(request : AcceptAllRevisionsRequest, callback : @escaping (_ response : RevisionsModificationResponse?, _ error : Error?) -> ()) {
6060
do {
6161
if (self.apiInvoker == nil) {
@@ -89,7 +89,7 @@ public class WordsAPI : Encryptor {
8989
}
9090

9191
// Sync representation of acceptAllRevisions method
92-
// Accepts all revisions in the document.
92+
// Accepts all the revisions in the document.
9393
public func acceptAllRevisions(request : AcceptAllRevisionsRequest) throws -> RevisionsModificationResponse {
9494
let semaphore = DispatchSemaphore(value: 0);
9595
var responseObject : RevisionsModificationResponse? = nil;
@@ -109,7 +109,7 @@ public class WordsAPI : Encryptor {
109109
}
110110

111111
// Async representation of acceptAllRevisionsOnline method
112-
// Accepts all revisions in the document.
112+
// Accepts all the revisions in the document.
113113
public func acceptAllRevisionsOnline(request : AcceptAllRevisionsOnlineRequest, callback : @escaping (_ response : AcceptAllRevisionsOnlineResponse?, _ error : Error?) -> ()) {
114114
do {
115115
if (self.apiInvoker == nil) {
@@ -143,7 +143,7 @@ public class WordsAPI : Encryptor {
143143
}
144144

145145
// Sync representation of acceptAllRevisionsOnline method
146-
// Accepts all revisions in the document.
146+
// Accepts all the revisions in the document.
147147
public func acceptAllRevisionsOnline(request : AcceptAllRevisionsOnlineRequest) throws -> AcceptAllRevisionsOnlineResponse {
148148
let semaphore = DispatchSemaphore(value: 0);
149149
var responseObject : AcceptAllRevisionsOnlineResponse? = nil;
@@ -8930,7 +8930,7 @@ public class WordsAPI : Encryptor {
89308930
}
89318931

89328932
// Async representation of getPublicKey method
8933-
// Get assymetric public key.
8933+
// Get asymmetric public key.
89348934
public func getPublicKey(request : GetPublicKeyRequest, callback : @escaping (_ response : PublicKeyResponse?, _ error : Error?) -> ()) {
89358935
do {
89368936
if (self.apiInvoker == nil) {
@@ -8964,7 +8964,7 @@ public class WordsAPI : Encryptor {
89648964
}
89658965

89668966
// Sync representation of getPublicKey method
8967-
// Get assymetric public key.
8967+
// Get asymmetric public key.
89688968
public func getPublicKey(request : GetPublicKeyRequest) throws -> PublicKeyResponse {
89698969
let semaphore = DispatchSemaphore(value: 0);
89708970
var responseObject : PublicKeyResponse? = nil;

Sources/AsposeWordsCloud/Model/Comment.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,25 +229,25 @@ public class Comment : CommentLink {
229229
}
230230

231231

232-
// Sets author. Gets or sets the author name for a comment. Cannot be null.Default is empty string.
232+
// Sets author. Gets or sets the author name for a comment. Cannot be null.Default is an empty string.
233233
public func setAuthor(author : String?) -> Comment {
234234
self.author = author;
235235
return self;
236236
}
237237

238-
// Gets author. Gets or sets the author name for a comment. Cannot be null.Default is empty string.
238+
// Gets author. Gets or sets the author name for a comment. Cannot be null.Default is an empty string.
239239
public func getAuthor() -> String? {
240240
return self.author;
241241
}
242242

243243

244-
// Sets initial. Gets or sets the initials of the user associated with a specific comment. Cannot be null.Default is empty string.
244+
// Sets initial. Gets or sets the initials of the user associated with a specific comment. Cannot be null.Default is an empty string.
245245
public func setInitial(initial : String?) -> Comment {
246246
self.initial = initial;
247247
return self;
248248
}
249249

250-
// Gets initial. Gets or sets the initials of the user associated with a specific comment. Cannot be null.Default is empty string.
250+
// Gets initial. Gets or sets the initials of the user associated with a specific comment. Cannot be null.Default is an empty string.
251251
public func getInitial() -> String? {
252252
return self.initial;
253253
}

Sources/AsposeWordsCloud/Model/CommentBase.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,25 +222,25 @@ public class CommentBase : Codable, WordsApiModel {
222222
}
223223

224224

225-
// Sets author. Gets or sets the author name for a comment. Cannot be null.Default is empty string.
225+
// Sets author. Gets or sets the author name for a comment. Cannot be null.Default is an empty string.
226226
public func setAuthor(author : String?) -> CommentBase {
227227
self.author = author;
228228
return self;
229229
}
230230

231-
// Gets author. Gets or sets the author name for a comment. Cannot be null.Default is empty string.
231+
// Gets author. Gets or sets the author name for a comment. Cannot be null.Default is an empty string.
232232
public func getAuthor() -> String? {
233233
return self.author;
234234
}
235235

236236

237-
// Sets initial. Gets or sets the initials of the user associated with a specific comment. Cannot be null.Default is empty string.
237+
// Sets initial. Gets or sets the initials of the user associated with a specific comment. Cannot be null.Default is an empty string.
238238
public func setInitial(initial : String?) -> CommentBase {
239239
self.initial = initial;
240240
return self;
241241
}
242242

243-
// Gets initial. Gets or sets the initials of the user associated with a specific comment. Cannot be null.Default is empty string.
243+
// Gets initial. Gets or sets the initials of the user associated with a specific comment. Cannot be null.Default is an empty string.
244244
public func getInitial() -> String? {
245245
return self.initial;
246246
}

Sources/AsposeWordsCloud/Model/CompressOptions.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,25 +89,25 @@ public class CompressOptions : Codable, WordsApiModel {
8989
public func validate() throws {
9090
}
9191

92-
// Sets imagesQuality. Gets or sets the quality level of images from 0 to 100. Default value is 75.
92+
// Sets imagesQuality. Gets or sets the quality level of images from 0 to 100. The default value is 75.
9393
public func setImagesQuality(imagesQuality : Int?) -> CompressOptions {
9494
self.imagesQuality = imagesQuality;
9595
return self;
9696
}
9797

98-
// Gets imagesQuality. Gets or sets the quality level of images from 0 to 100. Default value is 75.
98+
// Gets imagesQuality. Gets or sets the quality level of images from 0 to 100. The default value is 75.
9999
public func getImagesQuality() -> Int? {
100100
return self.imagesQuality;
101101
}
102102

103103

104-
// Sets imagesReduceSizeFactor. Gets or sets the resize factor of images. This value determines how many times the size of the images in the document will be reduced. The parameter value must be greater than 1 for resizing. Default value is 1 and has no effect on images size.
104+
// Sets imagesReduceSizeFactor. Gets or sets the resize factor of images. This value determines how many times the size of the images in the document will be reduced. The parameter value must be greater than 1 for resizing. The default value is 1 and has no effect on images size.
105105
public func setImagesReduceSizeFactor(imagesReduceSizeFactor : Int?) -> CompressOptions {
106106
self.imagesReduceSizeFactor = imagesReduceSizeFactor;
107107
return self;
108108
}
109109

110-
// Gets imagesReduceSizeFactor. Gets or sets the resize factor of images. This value determines how many times the size of the images in the document will be reduced. The parameter value must be greater than 1 for resizing. Default value is 1 and has no effect on images size.
110+
// Gets imagesReduceSizeFactor. Gets or sets the resize factor of images. This value determines how many times the size of the images in the document will be reduced. The parameter value must be greater than 1 for resizing. The default value is 1 and has no effect on images size.
111111
public func getImagesReduceSizeFactor() -> Int? {
112112
return self.imagesReduceSizeFactor;
113113
}

Sources/AsposeWordsCloud/Model/CustomXmlPart.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ public class CustomXmlPart : CustomXmlPartLink {
110110
}
111111

112112

113-
// Sets data. Gets or sets the custom xml part data. Cannot be null.Default is empty string.
113+
// Sets data. Gets or sets the custom xml part data. Cannot be null.Default is an empty string.
114114
public func setData(data : String?) -> CustomXmlPart {
115115
self.data = data;
116116
return self;
117117
}
118118

119-
// Gets data. Gets or sets the custom xml part data. Cannot be null.Default is empty string.
119+
// Gets data. Gets or sets the custom xml part data. Cannot be null.Default is an empty string.
120120
public func getData() -> String? {
121121
return self.data;
122122
}

Sources/AsposeWordsCloud/Model/FieldOptions.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,13 +343,13 @@ public class FieldOptions : Codable, WordsApiModel {
343343

344344
}
345345

346-
// Sets currentUser. Gets or sets Curren tUser.
346+
// Sets currentUser. Gets or sets Current User.
347347
public func setCurrentUser(currentUser : UserInformation?) -> FieldOptions {
348348
self.currentUser = currentUser;
349349
return self;
350350
}
351351

352-
// Gets currentUser. Gets or sets Curren tUser.
352+
// Gets currentUser. Gets or sets Current User.
353353
public func getCurrentUser() -> UserInformation? {
354354
return self.currentUser;
355355
}

Sources/AsposeWordsCloud/Model/Footnote.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,13 +194,13 @@ public class Footnote : FootnoteLink {
194194
}
195195

196196

197-
// Sets referenceMark. Gets or sets the custom reference mark to be used for this footnote. Default value is Empty, meaning auto-numbered footnotes are used. RTF-format can only store 1 symbol as custom reference mark, so upon export only the first symbol will be written others will be discard.
197+
// Sets referenceMark. Gets or sets the custom reference mark to be used for this footnote. The default value is Empty, meaning auto-numbered footnotes are used. RTF-format can only store 1 symbol as custom reference mark, so upon export only the first symbol will be written others will be discard.
198198
public func setReferenceMark(referenceMark : String?) -> Footnote {
199199
self.referenceMark = referenceMark;
200200
return self;
201201
}
202202

203-
// Gets referenceMark. Gets or sets the custom reference mark to be used for this footnote. Default value is Empty, meaning auto-numbered footnotes are used. RTF-format can only store 1 symbol as custom reference mark, so upon export only the first symbol will be written others will be discard.
203+
// Gets referenceMark. Gets or sets the custom reference mark to be used for this footnote. The default value is Empty, meaning auto-numbered footnotes are used. RTF-format can only store 1 symbol as custom reference mark, so upon export only the first symbol will be written others will be discard.
204204
public func getReferenceMark() -> String? {
205205
return self.referenceMark;
206206
}

Sources/AsposeWordsCloud/Model/FootnoteBase.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,13 @@ public class FootnoteBase : Codable, WordsApiModel {
167167
}
168168

169169

170-
// Sets referenceMark. Gets or sets the custom reference mark to be used for this footnote. Default value is Empty, meaning auto-numbered footnotes are used. RTF-format can only store 1 symbol as custom reference mark, so upon export only the first symbol will be written others will be discard.
170+
// Sets referenceMark. Gets or sets the custom reference mark to be used for this footnote. The default value is Empty, meaning auto-numbered footnotes are used. RTF-format can only store 1 symbol as custom reference mark, so upon export only the first symbol will be written others will be discard.
171171
public func setReferenceMark(referenceMark : String?) -> FootnoteBase {
172172
self.referenceMark = referenceMark;
173173
return self;
174174
}
175175

176-
// Gets referenceMark. Gets or sets the custom reference mark to be used for this footnote. Default value is Empty, meaning auto-numbered footnotes are used. RTF-format can only store 1 symbol as custom reference mark, so upon export only the first symbol will be written others will be discard.
176+
// Gets referenceMark. Gets or sets the custom reference mark to be used for this footnote. The default value is Empty, meaning auto-numbered footnotes are used. RTF-format can only store 1 symbol as custom reference mark, so upon export only the first symbol will be written others will be discard.
177177
public func getReferenceMark() -> String? {
178178
return self.referenceMark;
179179
}

Sources/AsposeWordsCloud/Model/FormField.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,13 +284,13 @@ public class FormField : NodeLink {
284284
}
285285

286286

287-
// Sets ownHelp. Gets or sets a value indicating whether the source of the text that's displayed in a message box when a form field has the focus and the user presses F1. If True, the text specified by the HelpText property is displayed. If False, the text in the AutoText entry specified by the HelpText property is displayed.
287+
// Sets ownHelp. Gets or sets a value indicating whether the source of the text that's displayed in a message box when a form field has the focus and the user presses F1. If true, the text specified by the HelpText property is displayed. If False, the text in the AutoText entry specified by the HelpText property is displayed.
288288
public func setOwnHelp(ownHelp : Bool?) -> FormField {
289289
self.ownHelp = ownHelp;
290290
return self;
291291
}
292292

293-
// Gets ownHelp. Gets or sets a value indicating whether the source of the text that's displayed in a message box when a form field has the focus and the user presses F1. If True, the text specified by the HelpText property is displayed. If False, the text in the AutoText entry specified by the HelpText property is displayed.
293+
// Gets ownHelp. Gets or sets a value indicating whether the source of the text that's displayed in a message box when a form field has the focus and the user presses F1. If true, the text specified by the HelpText property is displayed. If False, the text in the AutoText entry specified by the HelpText property is displayed.
294294
public func getOwnHelp() -> Bool? {
295295
return self.ownHelp;
296296
}

Sources/AsposeWordsCloud/Model/HtmlFixedSaveOptionsData.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -367,13 +367,13 @@ public class HtmlFixedSaveOptionsData : FixedPageSaveOptionsData {
367367
try super.validate();
368368
}
369369

370-
// Sets cssClassNamesPrefix. Gets or sets the prefix which is added to all class names in style.css file. Default value is "aw".
370+
// Sets cssClassNamesPrefix. Gets or sets the prefix which is added to all class names in style.css file. The default value is "aw".
371371
public func setCssClassNamesPrefix(cssClassNamesPrefix : String?) -> HtmlFixedSaveOptionsData {
372372
self.cssClassNamesPrefix = cssClassNamesPrefix;
373373
return self;
374374
}
375375

376-
// Gets cssClassNamesPrefix. Gets or sets the prefix which is added to all class names in style.css file. Default value is "aw".
376+
// Gets cssClassNamesPrefix. Gets or sets the prefix which is added to all class names in style.css file. The default value is "aw".
377377
public func getCssClassNamesPrefix() -> String? {
378378
return self.cssClassNamesPrefix;
379379
}
@@ -451,13 +451,13 @@ public class HtmlFixedSaveOptionsData : FixedPageSaveOptionsData {
451451
}
452452

453453

454-
// Sets idPrefix. Gets or sets a prefix that is prepended to all generated element IDs in the output document. Default value is null and no prefix is prepended. If the prefix is specified, it can contain only letters, digits, underscores, and hyphens, and must start with a letter.
454+
// Sets idPrefix. Gets or sets a prefix that is prepended to all generated element IDs in the output document. The default value is null and no prefix is prepended. If the prefix is specified, it can contain only letters, digits, underscores, and hyphens, and must start with a letter.
455455
public func setIdPrefix(idPrefix : String?) -> HtmlFixedSaveOptionsData {
456456
self.idPrefix = idPrefix;
457457
return self;
458458
}
459459

460-
// Gets idPrefix. Gets or sets a prefix that is prepended to all generated element IDs in the output document. Default value is null and no prefix is prepended. If the prefix is specified, it can contain only letters, digits, underscores, and hyphens, and must start with a letter.
460+
// Gets idPrefix. Gets or sets a prefix that is prepended to all generated element IDs in the output document. The default value is null and no prefix is prepended. If the prefix is specified, it can contain only letters, digits, underscores, and hyphens, and must start with a letter.
461461
public func getIdPrefix() -> String? {
462462
return self.idPrefix;
463463
}
@@ -475,13 +475,13 @@ public class HtmlFixedSaveOptionsData : FixedPageSaveOptionsData {
475475
}
476476

477477

478-
// Sets pageMargins. Gets or sets the margin around pages in HTML document. The margins value is measured in points and should be equal to or greater than 0. Default value is 10 points. Depends on the value of PageHorizontalAlignment property: Defines top, bottom and left page margins if the value is Left. Defines top, bottom and right page margins if the value is Right. Defines top and bottom page margins if the value is Center.
478+
// Sets pageMargins. Gets or sets the margin around pages in HTML document. The margins value is measured in points and should be equal to or greater than 0. The default value is 10 points. Depends on the value of PageHorizontalAlignment property: Defines top, bottom and left page margins if the value is Left. Defines top, bottom and right page margins if the value is Right. Defines top and bottom page margins if the value is Center.
479479
public func setPageMargins(pageMargins : Double?) -> HtmlFixedSaveOptionsData {
480480
self.pageMargins = pageMargins;
481481
return self;
482482
}
483483

484-
// Gets pageMargins. Gets or sets the margin around pages in HTML document. The margins value is measured in points and should be equal to or greater than 0. Default value is 10 points. Depends on the value of PageHorizontalAlignment property: Defines top, bottom and left page margins if the value is Left. Defines top, bottom and right page margins if the value is Right. Defines top and bottom page margins if the value is Center.
484+
// Gets pageMargins. Gets or sets the margin around pages in HTML document. The margins value is measured in points and should be equal to or greater than 0. The default value is 10 points. Depends on the value of PageHorizontalAlignment property: Defines top, bottom and left page margins if the value is Left. Defines top, bottom and right page margins if the value is Right. Defines top and bottom page margins if the value is Center.
485485
public func getPageMargins() -> Double? {
486486
return self.pageMargins;
487487
}

0 commit comments

Comments
 (0)