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?

[620 byte] By [aditma] at [2007-11-27 0:28:36]
# 1
this issue has been solved
aditma at 2007-7-11 22:30:02 > top of Java-index,Java Essentials,Java Programming...