https://bz.apache.org/bugzilla/show_bug.cgi?id=60147

--- Comment #5 from onlyarticle <[email protected]> ---
(In reply to Javen O'Neal from comment #4)

code sample like this :

XSSFRow row = sheet.createRow(rowNum);
XSSFCell cell = row.createCell(i);
cell.setCellStyle(style);
cell.setCellValue(textValue);

OR 

XSSFRichTextString richString = new XSSFRichTextString(textValue);
richString.applyFont(font);
cell.setCellValue(richString);

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to