SourceGrid.Grid.RemoveCell C# (CSharp) Method

RemoveCell() private method

Remove the specified cell
private RemoveCell ( int row, int col ) : void
row int
col int
return void
        private void RemoveCell(int row, int col)
        {
            Cells.ICell tmp = DirectGetCell(new Position(row, col));

            if (tmp != null)
            {
                tmp.UnBindToGrid();

                DirectSetCell(new Position(row, col), null);
            }
        }