[]
Gets or sets the text in the left footer section of the IPageSetup object.
The string represents the current left footer content configured in the page setup. It can include header and footer formatting codes, such as page-number placeholders or formatting instructions.
string LeftFooter { get; set; }
Property LeftFooter As String
IPageSetup pageSetup = worksheet.PageSetup;
pageSetup.LeftFooter = "&\"Arial,Italic\"Confidential";
string leftFooter = pageSetup.LeftFooter;