@@ -50,8 +50,8 @@ export class PdfSaveOptionsData extends FixedPageSaveOptionsData {
5050 */
5151 public static attributeTypeMap : Array < AttributeInfo > = [
5252 {
53- name : "cacheHeaderFooterShapes " ,
54- baseName : "CacheHeaderFooterShapes " ,
53+ name : "cacheBackgroundGraphics " ,
54+ baseName : "CacheBackgroundGraphics " ,
5555 type : "boolean" ,
5656 } ,
5757 {
@@ -84,6 +84,11 @@ export class PdfSaveOptionsData extends FixedPageSaveOptionsData {
8484 baseName : "DownsampleOptions" ,
8585 type : "DownsampleOptionsData" ,
8686 } ,
87+ {
88+ name : "embedAttachments" ,
89+ baseName : "EmbedAttachments" ,
90+ type : "boolean" ,
91+ } ,
8792 {
8893 name : "embedFullFonts" ,
8994 baseName : "EmbedFullFonts" ,
@@ -189,9 +194,9 @@ export class PdfSaveOptionsData extends FixedPageSaveOptionsData {
189194 }
190195
191196 /**
192- * Gets or sets a value indicating whether or not to cache shapes placed in header and footer of document.
197+ * Gets or sets a value determining whether or not to cache graphics placed in document's background .
193198 */
194- public cacheHeaderFooterShapes : boolean ;
199+ public cacheBackgroundGraphics : boolean ;
195200
196201 /**
197202 * Gets or sets the PDF standards compliance level for output documents.
@@ -226,6 +231,11 @@ export class PdfSaveOptionsData extends FixedPageSaveOptionsData {
226231 */
227232 public downsampleOptions : DownsampleOptionsData ;
228233
234+ /**
235+ * Gets or sets a value determining whether or not to embed attachments to the PDF document.
236+ */
237+ public embedAttachments : boolean ;
238+
229239 /**
230240 * Gets or sets a value indicating whether fonts are embedded into the resulting PDF documents.
231241 */
0 commit comments