ApiExamples.ExTableColumn.Column.GetColumnCells C# (CSharp) Метод

GetColumnCells() приватный Метод

Provides an up-to-date collection of cells which make up the column represented by this facade.
private GetColumnCells ( ) : ArrayList
Результат System.Collections.ArrayList
            private ArrayList GetColumnCells()
            {
                ArrayList columnCells = new ArrayList();

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

                return columnCells;
            }