Exemple #1
0
    private ExcelRow ParseExcelRow(IRow r, int idx)
    {
        ExcelRow row = new ExcelRow(idx, this);

        for (int i = 0; i < m_nPropertyNums; i++)
        {
            ExcelCell c = ParseExcelCell(r.GetCell(i), _Properties[i], row);
            row.AppendCell(c);
        }
        return(row);
    }