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