SourceGrid.Grid.GridRow.this C# (CSharp) Method

this() public method

public this ( SourceGrid.GridColumn column ) : Cells.ICell
column SourceGrid.GridColumn
return Cells.ICell
            public Cells.ICell this[GridColumn column]
            {
                get
                {
                    Cells.ICell cell;
                    if (mCells.TryGetValue(column, out cell))
                        return cell;
                    else
                        return null;
                }
                set
                {
                    mCells[column] = value;
                }
            }
Grid.GridRow