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