Spread Silverlight Documentation
ResetValue Method
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Cell Class : ResetValue Method
Resets the cell value to empty.
Syntax
'Declaration
 
Public Sub ResetValue() 
'Usage
 
Dim instance As Cell
 
instance.ResetValue()
public void ResetValue()
Example
This example uses the ResetValue method.
GcSpreadSheet1.ActiveSheet.Cells[0, 0].Value = 45;
//GcSpreadSheet1.ActiveSheet.Cells[0, 0].ResetWordWrap();
//GcSpreadSheet1.ActiveSheet.Cells[0, 0].ResetValue();
GcSpreadSheet1.ActiveSheet.Cells(0, 0).Value = 45
'GcSpreadSheet1.ActiveSheet.Cells(0, 0).ResetWordWrap()
'GcSpreadSheet1.ActiveSheet.Cells(0, 0).ResetValue()
See Also

Reference

Cell Class
Cell Members