Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / GetRowLabel Method
Row index
Row header column index
Example


In This Topic
    GetRowLabel Method
    In This Topic
    Gets the text in the specified row header cell.
    Syntax
    'Declaration
     
    
    Public Function GetRowLabel( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As String
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim column As Integer
    Dim value As String
     
    value = instance.GetRowLabel(row, column)
    public string GetRowLabel( 
       int row,
       int column
    )

    Parameters

    row
    Row index
    column
    Row header column index

    Return Value

    String containing the text in the specified row header cell
    Example
    This example returns the label of the specified row.
    See Also