[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.PageSettings.LeftFooterPicture

LeftFooterPicture Property

LeftFooterPicture

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

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