Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / Row Class / Formatter Property
Example


In This Topic
    Formatter Property (Row)
    In This Topic
    Gets or sets the default formatter for cells in this row.
    Syntax
    '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
    Example
    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.
    See Also