thisColumn = nrec.getColumn();
// TODO: Find object to match nrec.getShapeId()
thisStr = '"' + "(TODO)" + '"';
break;
case NumberRecord.sid: // 数值记录
NumberRecord numrec = (NumberRecord) record;
currentRow = thisRow = numrec.getRow();
thisColumn = numrec.getColumn();
int formatIndex = formatListener.getFormatIndex(numrec);
String formatString = formatListener.getFormatString(numrec);
if (DATE_FORMATE_STRING_US.equals(formatString))
{
value = formatter.formatRawCellContents(numrec.getValue(), formatIndex, dateFormateString);
}else{
value = Double.toString(numrec.getValue());
}
// Format
rowList.add(index, value);
break;