SourceGrid.Grid.InvalidateCell C# (CSharp) Method

InvalidateCell() public method

Force a cell to redraw. If Redraw is set to false this function has no effects. If ColSpan or RowSpan is greater than 0 this function invalidate the complete range with InvalidateRange
public InvalidateCell ( Position p_Position ) : void
p_Position Position
return void
        public override void InvalidateCell(Position p_Position)
        {
            Cells.ICell cell = this[p_Position.Row, p_Position.Column];
            if (cell == null || (cell.Range.ColumnsCount == 1 && cell.Range.RowsCount == 1))
                base.InvalidateCell(p_Position);
            else
                InvalidateRange(cell.Range);
        }

Same methods

Grid::InvalidateCell ( Cells p_Cell ) : void