border and font setting for the same cell
I have writen a label in an excel cell using a font that I created (called "wf" - see code below).
I also want to put a left thick border to the same cell.
How can I do that?
ps: I call this function from "main":
private static void writeDataSheet(WritableSheet s)
{
WritableFont wf = new WritableFont(WritableFont.ARIAL, 10, WritableFont.BOLD);
WritableCellFormat cf = new WritableCellFormat(wf);
Label l = new Label(1,0,"Last Name",cf);
s.addCell(l);
}
What code should I add to the upper function in order to set a left thick border to my cell?

