SourceGrid.GridVirtual.GetCellsAtRow C# (CSharp) 메소드

GetCellsAtRow() 공개 메소드

Returns all the cells at specified row position
public GetCellsAtRow ( int p_RowIndex ) : Cells.ICellVirtual[]
p_RowIndex int
리턴 Cells.ICellVirtual[]
        public virtual Cells.ICellVirtual[] GetCellsAtRow(int p_RowIndex)
        {
            Cells.ICellVirtual[] l_Cells = new Cells.ICellVirtual[Columns.Count];
            for (int c = 0; c < Columns.Count; c++)
                l_Cells[c] = GetCell(p_RowIndex, c);

            return l_Cells;
        }