CellStyle is a global object stored at workbook level. Cells referer to their style by 0-based index.
You can pre-build a map <cellStyleIndex, ifModifiedFleg> and then simply check if the value is set for cell.getCellStyle().getIndex(). On Tue, Jan 15, 2013 at 5:02 AM, Stuart Turner <[email protected]> wrote: > Hi Everyone > > Is there a way to determine whether a cell has ANY format conditions? > In Excel, you can ask Range.FormatConditions.Count to obtain whether > any cell has formatting different from the default. > > In POI, am I correct in saying every cell has a CellStyle and I will > need to go through each one to determine if the font, colour, borders, > etc. are different from the default? > > Thanks > > Stuart > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
