Gets or sets the default formatter for cells in this row.
'Declaration
Public Property Formatter As IFormatter
'Usage
Dim instance As Row
Dim value As IFormatter
instance.Formatter = value
value = instance.Formatter
public IFormatter Formatter {get; set;}
Property Value
IFormatter object containing the formatter for cells in this row
This example creates a Row object and an IFormatter object. The IFormatter object is declared as a CurrencyFormatter and is then used as the formatter for the Row object. To verify this, the Row object's formatter is returned in a text box.