Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / GetRenderer Method
Row index of the cell
Column index of the cell
Example


In This Topic
    GetRenderer Method
    In This Topic
    Gets the renderer used to render a cell at the specified row and column.
    Syntax
    'Declaration
     
    
    Public Overridable Function GetRenderer( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As IRenderer
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim column As Integer
    Dim value As IRenderer
     
    value = instance.GetRenderer(row, column)
    public virtual IRenderer GetRenderer( 
       int row,
       int column
    )

    Parameters

    row
    Row index of the cell
    column
    Column index of the cell

    Return Value

    IRenderer object that represents the renderer used to render the cell
    Example
    This example returns the renderer for the specified cell.
    See Also