[]
Gets or sets the text in the center footer section of the IPageSetup object.
The string specifies the content printed in the center section of the footer. It can include header and footer codes such as page number placeholders that are supported by page setup footer text. Returns an empty string if no center footer text is set.
string CenterFooter { get; set; }
Property CenterFooter As String
IPageSetup pageSetup = worksheet.PageSetup;
pageSetup.CenterFooter = "Page &P of &N";
string centerFooter = pageSetup.CenterFooter;