Is there a generic way of parsing RichTextStrings from cells (for
example to transform it to some internal markup) when dealing with both
XSSF and HSSF formats?
RichTextString doesn't implement getFontAtIndex(), and the docs aren't
really clear if there's a way around this. I would think it should look
something like this:
RichTextString richText = cell.getRichStringCellValue();
for (int i=0; i < richText.numFormattingRuns(); i++)
{
// RichTextString doesn't implement this?
Font f = richText.getFontAtIndex(i);
// Do something with the font/string...
}
Anyone know?
Sam Gibson
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]