I'm using the latest Spreadsheet Gear and C# on .NET 3.5
I'm generating a spreadsheet and adding various formatting to it. One thing I would like to do is add an image to the left header section of my spreadsheet for printing. How do I achieve this?
I have tried:
worksheet.PageSetup.LeftHeader = Image.FromFile("file location");
but that doesn't seem to work. When I look at an example in Excel, I notice that excel sees a headed picture as "&[Picture]", but doesn't specify a file path.
Does anyone know the solution to this?