[]
Returns a IGraphic object that represents the picture for the right section of the footer. Used to set attributes of the picture.
IGraphic RightFooterPicture { get; }
ReadOnly Property RightFooterPicture As IGraphic
IPageSetup pageSetup = worksheet.PageSetup;
IGraphic picture = pageSetup.RightFooterPicture;
picture.Filename = System.IO.Path.Combine("Users", "DefaultApps", "Documents", "logo.png");
picture.Width = 36;