PageSetup.SetFooter
PageSetup.SetFooter method
Sets a script formatting the footer of an Excel file.
public void SetFooter(int section, string footerScript)
| Parameter | Type | Description |
|---|---|---|
| section | Int32 | 0: Left Section, 1: Center Section, 2: Right Section. |
| footerScript | String | Footer format script. |
Remarks
Script commands:
| Command | Description |
|---|---|
| &P | Current page number |
| &N | Page count |
| &D | Current date |
| &T | Current time |
| &A | Sheet name |
| &F | File name without path |
| &"<FontName>" | Font name, for example: &“Arial” |
| &"<FontName>, <FontStyle>" | Font name and font style, for example: &“Arial,Bold” |
| &<FontSize> | Font size. If this command is followed by a plain number to be printed in the header, it will be separated from the font height with a space character. |
| &K<RRGGBB> | Font color, for example(RED): &KFF0000 |
| &G | Image script |
For example: “&Arial,Bold&8Footer Note”
Examples
using System;
using Aspose.Cells;
namespace AsposeCellsExamples
{
public class PageSetupMethodSetFooterWithInt32StringDemo
{
public static void Run()
{
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.Worksheets[0];
worksheet.PageSetup.SetFooter(0, "Page &P");
worksheet.PageSetup.SetFooter(1, "&D");
worksheet.PageSetup.SetFooter(2, "&A");
workbook.Save("output.xlsx");
}
}
}
See Also
- class PageSetup
- namespace Aspose.Cells
- assembly Aspose.Cells