Hello,
I have two excel spreadsheets. One containing tables with data. Other saved as themes from Excel.
What I wanted to do is export first excel to pdf with theme applied from the second excel sheet.
I am doing as :
Workbook wb1 = new Workbook(excel1);
Workbook wb2 = new Workbook(excel2);
wb1.copyTheme(wb2);
After this saving as pdf.
What I wanted to do here is : set the font as Arial to a PDF that I generate.(This is the only functionality available in themes in excel). But where to add that code. To wb2 or wb1 after copytheme or to pdf before saving and what will be the code?
Thanks,