[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PageSettings.LeftHeaderPicture

LeftHeaderPicture Property

LeftHeaderPicture

Gets or sets the picture for the left section of the page header.

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