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

--- Comment #11 from Mark Murphy <[email protected]> ---
(In reply to Javen O'Neal from comment #10)
> Mark,
> 
> Did you take a look at RegionUtil to see if meets your needs? See BugĀ 54593.

Yes, in fact RegionUtil is the source of my previous queries. But RegionUtil is
slow since it takes a one at a time approach at setting cell properties. Thus
creating a lot of unused intermediate CellStyles. I didn't see it until I
created a moderately sized sheet. That was when I set about creating
setCellProperties(). But RegionUtil can't really utilize that method the way it
is written. CellBorder takes the approach of putting together the borders in a
separate object, then applying them to the sheet all at once. This should
perform significantly better. I am not sure if we should upgrade RegionUtil or
remove it. RegionUtil is a better name because it can include fills as well,
but it needs a better implementation. CellBorder does everything RegionUtil
does, but performs better, and may use less memory because all those unused
intermediate styles aren't created.

-- 
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