SourceGrid.Grid.InvalidateCell C# (CSharp) Method

InvalidateCell() public method

Force a redraw of the specified cell
public InvalidateCell ( Cells p_Cell ) : void
p_Cell Cells
return void
        public virtual void InvalidateCell(Cells.ICell p_Cell)
        {
            if (p_Cell!=null)
                base.InvalidateRange(p_Cell.Range);
        }

Same methods

Grid::InvalidateCell ( Position p_Position ) : void