[]
Invalidates the control.
public void Invalidate()
Public Sub Invalidate()
Invalidates a cell, causing it to be repainted.
public void Invalidate(int row, int col)
Public Sub Invalidate(row As Integer, col As Integer)
| 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)
Public Sub Invalidate(topRow As Integer, leftCol As Integer, bottomRow As Integer, rightCol As Integer)
| 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)
Public Overridable Sub Invalidate(rg As CellRange)
| 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.