Spread Silverlight Documentation
ResetFormatter Method (Cell)
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Cell Class : ResetFormatter Method
Resets the formatter for the cell and causes the cell to inherit the formatter from the default cell.
Syntax
'Declaration
 
Public Sub ResetFormatter() 
'Usage
 
Dim instance As Cell
 
instance.ResetFormatter()
public void ResetFormatter()
Example
This example uses the ResetFormatter method.
gcSpreadSheet1.Sheets[0].Cells[1, 1].Formatter = new GeneralFormatter("0.00");
gcSpreadSheet1.Sheets[0].Cells[1, 1].Value = 123;
gcSpreadSheet1.Invalidate();

private void Button_Click(object sender, RoutedEventArgs e)
{
    gcSpreadSheet1.Sheets[0].Cells[1, 1].ResetFormatter();
    gcSpreadSheet1.Invalidate();
}
Dim formatter As New GeneralFormatter("0.00")
GcSpreadSheet1.Sheets(0).Cells(1, 1).Formatter = formatter
GcSpreadSheet1.Sheets(0).Cells(1, 1).Value = 123
GcSpreadSheet1.Invalidate()

Private Sub Button_Click(sender As System.Object, e As System.Windows.RoutedEventArgs)
        GcSpreadSheet1.Sheets(0).Cells(1, 1).ResetFormatter()
        GcSpreadSheet1.Invalidate()
End Sub
See Also

Reference

Cell Class
Cell Members