How to make a range of text bold text style using Apache POI? Eg:
Instead of applying style for the entire cell. I used to do this in vb.net with these lines of code:
excellSheet.Range("C2").Value = "Priority: " + priority
excellSheet.Range("C2").Characters(0, 8).Font.Bold = True
But I can't find the way to do that in Java using Apache POI.
Any help will be much appreciated. Thanks!