private ArrayList GetColumnCells() { ArrayList columnCells = new ArrayList(); foreach (Row row in mTable.Rows) { Cell cell = row.Cells[mColumnIndex]; if (cell != null) columnCells.Add(cell); } return columnCells; }