[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PageSettings.RightFooterPicture

RightFooterPicture Property

RightFooterPicture

Gets or sets the picture for the right section of the page footer.

Declaration
public IGraphic RightFooterPicture { get; set; }
Public Property RightFooterPicture As IGraphic
Examples
PageSettings pageSettings = new PageSettings();
worksheet.PageSetup.RightFooter = "&G";
IGraphic picture = worksheet.PageSetup.RightFooterPicture;
pageSettings.RightFooter = "&G";
pageSettings.RightFooterPicture = picture;
IGraphic rightFooterPicture = pageSettings.RightFooterPicture;