[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPageSetup.RightFooterPicture

RightFooterPicture Property

RightFooterPicture

Returns a IGraphic object that represents the picture for the right section of the footer. Used to set attributes of the picture.

Declaration
IGraphic RightFooterPicture { get; }
ReadOnly Property RightFooterPicture As IGraphic
Examples
IPageSetup pageSetup = worksheet.PageSetup;
IGraphic picture = pageSetup.RightFooterPicture;
picture.Filename = System.IO.Path.Combine("Users", "DefaultApps", "Documents", "logo.png");
picture.Width = 36;