[]
Invalidates the control.
public void Invalidate()
Invalidates a cell, causing it to be repainted.
public void Invalidate(int row, int col)
Type | Name | Description |
---|---|---|
int | row | Row index. |
int | col | Column index. |
This method is rarely used by the programmer, since the grid automatically performs invalidation as needed.
Invalidates a cell range, causing it to be repainted.
public void Invalidate(int topRow, int leftCol, int bottomRow, int rightCol)
Type | Name | Description |
---|---|---|
int | topRow | Top row in the range. |
int | leftCol | Left column in the range. |
int | bottomRow | Bottom row in the range. |
int | rightCol | Right column in the range. |
Invalidates a cell range, causing it to be repainted.
public virtual void Invalidate(CellRange rg)
Type | Name | Description |
---|---|---|
CellRange | rg | CellRange that will be invalidated. |
This method is rarely used by the programmer, since the grid automatically performs invalidation as needed.