Re: How to seet Font orientation

2007-04-20 Thread Anthony Andrews
Hello Clint, I do not know if there is a single setting to handle this requirement but I reckon you could quite easily handle it by setting wrapping on for the cell and then creating a method that generates the cell contents by simply inserting a new line character between each letter - or

RE: How to seet Font orientation

2007-04-20 Thread clint.barbosa
Yes, that could work but it would just spell out the words downward, Is there a way I could set a certain angle of font alignment, Could be 45º or 90º (vertically). Thanks for your suggestion Anthony :) -Original Message- From: Anthony Andrews [mailto:[EMAIL PROTECTED] Sent: Friday,

Re: 3.0 release (and maven)

2007-04-20 Thread Nick Burch
On Thu, 19 Apr 2007, Joerg Hohwiller wrote: So bug #39977 is not an issue anymore? The groupId bit isn't. Now we understand what it should be, we can use the java package, and all will be fine. Comment #2 (http://issues.apache.org/bugzilla/show_bug.cgi?id=39977#c2) still needs looking at,

Is there a way to listen for cells with no formating?

2007-04-20 Thread Levi Strope
I need a way to listen for cells with no formatting and no values. Is there a way to do this? - To unsubscribe, e-mail: [EMAIL PROTECTED] Mailing List: http://jakarta.apache.org/site/mail2.html#poi The Apache Jakarta Poi

RE: How to seet Font orientation

2007-04-20 Thread Anthony Andrews
Ah, sorry, I misunderstood, you are talking about the orientation option that is available if you choose Format Cells Alignment whilst in Excel. I have to admit that I do not whether there is a way to accomplish this or not using HSSF. If it does not prove possible using the API and if you

RE: How to seet Font orientation

2007-04-20 Thread Anthony Andrews
I always tell people at work to 'look at the documentation' and I have signally failed to do that here, sorry. Just looked at the javadoc for the HSSFCellStyle class and found that there is a setRotation() method there. I am guessing that this would allow you to rotate the text within the

RE: Is there a way to listen for cells with no formating?

2007-04-20 Thread Levi Strope
Is ther a hex value for cells with nothing? From: Levi Strope Sent: Friday, April 20, 2007 10:00 AM To: POI Users List Subject: Is there a way to listen for cells with no formating? I need a way to listen for cells with no formatting and no values. Is there a

RE: Is there a way to listen for cells with no formating?

2007-04-20 Thread Levi Strope
Does anyone have an example of how to use UnknownRecord() ? From: Levi Strope Sent: Friday, April 20, 2007 12:36 PM To: Levi Strope; POI Users List Subject: RE: Is there a way to listen for cells with no formating? Is ther a hex value for cells with nothing?

Re: Is there a way to listen for cells with no formating?

2007-04-20 Thread Andrew C. Oliver
Preferably implement it and supply a patch. You can probably add an instanceof UnknownRecord at the top of your switch statement. However UnknwonRecord isn't a cell type it means POI doesn't yet parse that record type. You're looking for the blank records that have nothing in them. Most of