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


In This Topic
    Renderer Property (Row)
    In This Topic
    Gets or sets the default renderer for cells in this row.
    Syntax
    'Declaration
     
    
    Public Property Renderer As IRenderer
    'Usage
     
    
    Dim instance As Row
    Dim value As IRenderer
     
    instance.Renderer = value
     
    value = instance.Renderer
    public IRenderer Renderer {get; set;}

    Property Value

    IRenderer object containing the renderer for cells in this row
    Example
    This example creates a Row object, a CheckBoxEditor object, and a CheckBoxRenderer object for the active sheet of a sheet. The CheckBoxEditor is assigned to the Row object's Editor property, and the CheckBoxRenderer is assigned to the Row object's Renderer property. The Row object is then assigned to the first row of the sheet, such that all cells in the first row are check boxes. The Editor value of the Row object is returned to a text box.
    See Also