You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,12 @@ This repository contains Aspose.Words Cloud SDK for Swift source code. This SDK
13
13
* Watermarks and protection
14
14
* Full read & write access to Document Object Model, including sections, paragraphs, text, images, tables, headers/footers and many others
15
15
16
+
## Enhancements in Version 21.3
17
+
18
+
- Added 'UpdateCreatedTimeProperty' save option
19
+
- Added Tables into HeaderFooter so it's possible to address paragraphs inside table which is located in headerfooter (sections/0/headersfooters/1/tables/0/rows/0/cells/0/paragraphs/0)
20
+
21
+
16
22
## Enhancements in Version 21.2
17
23
18
24
- Added delete all comments method
@@ -115,7 +121,7 @@ Add link to this repository as dependency to your Package.swift:
115
121
116
122
dependencies: [
117
123
// Dependencies declare other packages that this package depends on.
@@ -202,6 +210,16 @@ public class SaveOptionsData : Codable, WordsApiModel {
202
210
returnself.saveFormat;
203
211
}
204
212
213
+
// Sets updateCreatedTimeProperty. Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving. Default value is false.
// Gets updateCreatedTimeProperty. Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.CreatedTime property is updated before saving. Default value is false.
219
+
publicfunc getUpdateCreatedTimeProperty()->Bool?{
220
+
returnself.updateCreatedTimeProperty;
221
+
}
222
+
205
223
// Sets updateFields. Gets or sets a value indicating whether fields should be updated before saving the document to a fixed page format. The default value is true.
0 commit comments