return cellFormat;
}
protected CellValue getAutoDetectedCellValue(int x, int y, String textStr, StyleInfo baseStyle) throws JRException
{
CellValue cellValue;
try
{
double d = Double.parseDouble(textStr);
WritableCellFormat cellStyle = getLoadedCellStyle(baseStyle);
cellValue = new Number(x, y, d, cellStyle);