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