I'm using jxl to create excel files. I need to set a particular font for date type cells. When I write a text cell it's easy to do:
WritableFont arial10pt = new WritableFont(WritableFont.ARIAL, 10);
arial = new WritableCellFormat(arial10pt);
But when I create a date cell, using the following code, I don't know how to set a font:
DateFormat customDateFormat = new DateFormat("dd/MM/yyyy");
WritableCellFormat dateFormat = new WritableCellFormat(customDateFormat);
Thanks for help!