[]
        
(Showing Draft Content)

C1.Win.FlexGrid.C1FlexGridBase.Invalidate

Invalidate Method

Invalidate()

Invalidates the control.

Declaration
public void Invalidate()

Invalidate(int, int)

Invalidates a cell, causing it to be repainted.

Declaration
public void Invalidate(int row, int col)
Parameters
Type Name Description
int row

Row index.

int col

Column index.

Remarks

This method is rarely used by the programmer, since the grid automatically performs invalidation as needed.

Invalidate(int, int, int, int)

Invalidates a cell range, causing it to be repainted.

Declaration
public void Invalidate(int topRow, int leftCol, int bottomRow, int rightCol)
Parameters
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.

Invalidate(CellRange)

Invalidates a cell range, causing it to be repainted.

Declaration
public virtual void Invalidate(CellRange rg)
Parameters
Type Name Description
CellRange rg

CellRange that will be invalidated.

Remarks

This method is rarely used by the programmer, since the grid automatically performs invalidation as needed.