ColdFusion 11 Support

In the CFScript excerpt of Aspose Java Words, is it possible to set the standard Footer from Bottom to .8?

In MS Word, the procedure is:

· Insert footer

· Edit Footer

· Footer from Bottom to .8

builder.moveToHeaderFooter(HeaderFooterType.FOOTER_FIRST);
///Insert BarCode on first page in footer (only on certain Consents)
builder.insertImage("E:#appRoot#\Bar_Code.jpg");

builder.writeln("");

builder.writeln("HSR Submission Number: #settings.ss_study_id#");
builder.writeln("Version Date: #dateRevised#");
builder.write("Page Number: ");
builder.insertField("PAGE"); //inserts the page number
builder.write(" of ");
builder.insertField("NUMPAGES"); //inserts the total number of pages in the document
//FieldType.html NUMPAGES

builder.moveToHeaderFooter(HeaderFooterType.FOOTER_PRIMARY);
builder.writeln("");

builder.writeln("HSR Submission Number: #settings.ss_study_id#");
builder.writeln("Version Date: #dateRevised#");

builder.write("Page Number: ");
builder.insertField("PAGE"); //inserts the page number
builder.write(" of ");
builder.insertField("NUMPAGES"); //inserts the total number of pages in the document
//FieldType.html NUMPAGES

Thank you.

Hi Chuck,

You can simply use PageSetup.FooterDistance property to get/set the distance (in points) between the footer and the bottom of the page.

Best regards,