[]
Gets or sets the picture for the left section of the page footer.
public IGraphic LeftFooterPicture { get; set; }
Public Property LeftFooterPicture As IGraphic
PageSettings pageSettings = new PageSettings();
worksheet.PageSetup.LeftFooter = "&G";
IGraphic picture = worksheet.PageSetup.LeftFooterPicture;
pageSettings.LeftFooter = "&G";
pageSettings.LeftFooterPicture = picture;
IGraphic leftFooterPicture = pageSettings.LeftFooterPicture;