Bug 65374 - XSSFRichTextString Fine-grained thickening does not work
Summary: XSSFRichTextString Fine-grained thickening does not work
Status: NEW
Alias: None
Product: POI
Classification: Unclassified
Component: XSSF (show other bugs)
Version: 5.0.0-FINAL
Hardware: PC All
: P2 normal (vote)
Target Milestone: ---
Assignee: POI Developers List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-06-12 06:36 UTC by hosier
Modified: 2021-06-15 14:52 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description hosier 2021-06-12 06:36:57 UTC
XSSFFont font1 = wb.createFont();
font1.setBold(true);

XSSFFont font2 = wb.createFont();
font2.setBold(true);

XSSFRichTextString s = new XSSFRichTextString();
s.append("apache poi 5.0.0", font1);
s.append("test", font2);
row0Cell0.setCellValue(s);