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: Sources/AsposeWordsCloud/Model/HtmlFixedSaveOptionsData.swift
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,9 @@ public class HtmlFixedSaveOptionsData : FixedPageSaveOptionsData {
68
68
69
69
// Field of showPageBorder. Gets or sets specifies whether border around pages should be shown.
70
70
privatevarshowPageBorder:Bool?;
71
+
72
+
// Field of useTargetMachineFonts. Gets or sets flag indicates whether fonts from target machine must be used to display the document. If this flag is set to true, Aspose.Words.Saving.HtmlFixedSaveOptions.FontFormat and Aspose.Words.Saving.HtmlFixedSaveOptions.ExportEmbeddedFonts properties do not have effect, also Aspose.Words.Saving.HtmlFixedSaveOptions.ResourceSavingCallback is not fired for fonts. Default is false.
73
+
privatevaruseTargetMachineFonts:Bool?;
71
74
72
75
privateenumCodingKeys:String,CodingKey{
73
76
case cssClassNamesPrefix;
@@ -83,6 +86,7 @@ public class HtmlFixedSaveOptionsData : FixedPageSaveOptionsData {
83
86
case resourcesFolderAlias;
84
87
case saveFontFaceCssSeparately;
85
88
case showPageBorder;
89
+
case useTargetMachineFonts;
86
90
case invalidCodingKey;
87
91
}
88
92
@@ -106,6 +110,7 @@ public class HtmlFixedSaveOptionsData : FixedPageSaveOptionsData {
// Sets cssClassNamesPrefix. Gets or sets specifies prefix which is added to all class names in style.css file. Default value is \"aw\".
@@ -281,4 +289,14 @@ public class HtmlFixedSaveOptionsData : FixedPageSaveOptionsData {
281
289
publicfunc getShowPageBorder()->Bool?{
282
290
returnself.showPageBorder;
283
291
}
292
+
293
+
// Sets useTargetMachineFonts. Gets or sets flag indicates whether fonts from target machine must be used to display the document. If this flag is set to true, Aspose.Words.Saving.HtmlFixedSaveOptions.FontFormat and Aspose.Words.Saving.HtmlFixedSaveOptions.ExportEmbeddedFonts properties do not have effect, also Aspose.Words.Saving.HtmlFixedSaveOptions.ResourceSavingCallback is not fired for fonts. Default is false.
// Gets useTargetMachineFonts. Gets or sets flag indicates whether fonts from target machine must be used to display the document. If this flag is set to true, Aspose.Words.Saving.HtmlFixedSaveOptions.FontFormat and Aspose.Words.Saving.HtmlFixedSaveOptions.ExportEmbeddedFonts properties do not have effect, also Aspose.Words.Saving.HtmlFixedSaveOptions.ResourceSavingCallback is not fired for fonts. Default is false.
Copy file name to clipboardExpand all lines: Sources/AsposeWordsCloud/Model/OdtSaveOptionsData.swift
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -45,12 +45,16 @@ public class OdtSaveOptionsData : SaveOptionsData {
45
45
// Field of measureUnit. Gets or sets allows to specify units of measure to apply to document content. The default value is Aspose.Words.Saving.OdtSaveMeasureUnit.Centimeters. Open Office uses centimeters when specifying lengths, widths and other measurable formatting and content properties in documents whereas MS Office uses inches.
46
46
privatevarmeasureUnit:MeasureUnit?;
47
47
48
+
// Field of password. Gets or sets a password to encrypt document.
49
+
privatevarpassword:String?;
50
+
48
51
// Field of prettyFormat. Gets or sets specifies whether or not use pretty formats output.
49
52
privatevarprettyFormat:Bool?;
50
53
51
54
privateenumCodingKeys:String,CodingKey{
52
55
case isStrictSchema11;
53
56
case measureUnit;
57
+
case password;
54
58
case prettyFormat;
55
59
case invalidCodingKey;
56
60
}
@@ -64,6 +68,7 @@ public class OdtSaveOptionsData : SaveOptionsData {
Copy file name to clipboardExpand all lines: Sources/AsposeWordsCloud/Model/PdfSaveOptionsData.swift
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,9 @@ public class PdfSaveOptionsData : FixedPageSaveOptionsData {
84
84
// Field of imageCompression. Gets or sets specifies compression type to be used for all images in the document.
85
85
privatevarimageCompression:String?;
86
86
87
+
// Field of interpolateImages. Gets or sets a flag indicating whether image interpolation shall be performed by a conforming reader. When false is specified, the flag is not written to the output document and the default behaviour of reader is used instead.
88
+
privatevarinterpolateImages:Bool?;
89
+
87
90
// Field of openHyperlinksInNewWindow. Gets or sets determines whether hyperlinks in the output Pdf document are forced to be opened in a new window (or tab) of a browser.
88
91
privatevaropenHyperlinksInNewWindow:Bool?;
89
92
@@ -129,6 +132,7 @@ public class PdfSaveOptionsData : FixedPageSaveOptionsData {
129
132
case headerFooterBookmarksExportMode;
130
133
case imageColorSpaceExportMode;
131
134
case imageCompression;
135
+
case interpolateImages;
132
136
case openHyperlinksInNewWindow;
133
137
case outlineOptions;
134
138
case pageMode;
@@ -163,6 +167,7 @@ public class PdfSaveOptionsData : FixedPageSaveOptionsData {
@@ -392,6 +400,16 @@ public class PdfSaveOptionsData : FixedPageSaveOptionsData {
392
400
returnself.imageCompression;
393
401
}
394
402
403
+
// Sets interpolateImages. Gets or sets a flag indicating whether image interpolation shall be performed by a conforming reader. When false is specified, the flag is not written to the output document and the default behaviour of reader is used instead.
// Gets interpolateImages. Gets or sets a flag indicating whether image interpolation shall be performed by a conforming reader. When false is specified, the flag is not written to the output document and the default behaviour of reader is used instead.
409
+
publicfunc getInterpolateImages()->Bool?{
410
+
returnself.interpolateImages;
411
+
}
412
+
395
413
// Sets openHyperlinksInNewWindow. Gets or sets determines whether hyperlinks in the output Pdf document are forced to be opened in a new window (or tab) of a browser.
// Field of saveFormat. Gets or sets format of save.
34
43
privatevarsaveFormat:String?;
@@ -53,6 +62,12 @@ public class SaveOptionsData : Codable, WordsApiModel {
53
62
54
63
// Field of updateFields. Gets or sets a value determining if fields should be updated before saving the document to a fixed page format. Default value for this property is. true
55
64
privatevarupdateFields:Bool?;
65
+
66
+
// Field of dml3DEffectsRenderingMode. Gets or sets a value determining how 3D effects are rendered.
// Field of updateLastPrintedProperty. Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.LastPrinted property is updated before saving.
70
+
privatevarupdateLastPrintedProperty:Bool?;
56
71
57
72
privateenumCodingKeys:String,CodingKey{
58
73
case saveFormat;
@@ -63,6 +78,8 @@ public class SaveOptionsData : Codable, WordsApiModel {
63
78
case updateLastSavedTimeProperty;
64
79
case updateSdtContent;
65
80
case updateFields;
81
+
case dml3DEffectsRenderingMode;
82
+
case updateLastPrintedProperty;
66
83
case invalidCodingKey;
67
84
}
68
85
@@ -81,6 +98,8 @@ public class SaveOptionsData : Codable, WordsApiModel {
// Sets updateLastPrintedProperty. Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.LastPrinted property is updated before saving.
// Gets updateLastPrintedProperty. Gets or sets a value determining whether the Aspose.Words.Properties.BuiltInDocumentProperties.LastPrinted property is updated before saving.
0 commit comments