[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPageSetup.RightHeaderPicture

RightHeaderPicture Property

RightHeaderPicture

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

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