Spread Windows Forms 12.0 Product Documentation
Invalidate Method (Cell)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > Cell Class : Invalidate Method
Invalidates the displayed cells and sends the message to repaint them.
Syntax
'Declaration
 
Public Sub Invalidate() 
'Usage
 
Dim instance As Cell
 
instance.Invalidate()
public void Invalidate()
Example
This example invalidates the cell object and forces the component to repaint the cell.
FarPoint.Win.Spread.Cell aCell;
aCell = fpSpread1.ActiveSheet.Cells[0, 0];
acell.Invalidate();
Dim acell As FarPoint.Win.Spread.Cell
acell = fpSpread1.ActiveSheet.Cells(0, 0)
acell.Invalidate()
See Also

Reference

Cell Class
Cell Members