PageSetup.SetFirstPageFooter

PageSetup.SetFirstPageFooter method

Sets a script formatting the first page footer of an Excel file.

public void SetFirstPageFooter(int section, string footerScript)
ParameterTypeDescription
sectionInt320: Left Section, 1: Center Section, 2: Right Section.
footerScriptStringFooter format script.

Examples

using System;
using Aspose.Cells;

namespace AsposeCellsExamples
{
    public class PageSetupMethodSetFirstPageFooterWithInt32StringDemo
    {
        public static void Run()
        {
            // Create a workbook
            Workbook workbook = new Workbook();
            
            // Access the first worksheet
            Worksheet worksheet = workbook.Worksheets[0];
            
            // Get the PageSetup object
            PageSetup pageSetup = worksheet.PageSetup;
            
            // Set different headers/footers for first page
            pageSetup.IsHFDiffFirst = true;
            
            // Set first page footer with section index and text
            pageSetup.SetFirstPageFooter(0, "First Page Footer Text");
            
            // Save the workbook
            workbook.Save("output.xlsx");
            
            Console.WriteLine("First page footer set successfully.");
        }
    }
}

See Also