Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / GetValue Method
Row index
Column index


In This Topic
    GetValue Method (SheetView)
    In This Topic
    Gets unformatted data from the specified cell on this sheet.
    Syntax
    'Declaration
     
    
    Public Function GetValue( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Object
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim column As Integer
    Dim value As Object
     
    value = instance.GetValue(row, column)
    public object GetValue( 
       int row,
       int column
    )

    Parameters

    row
    Row index
    column
    Column index
    Exceptions
    ExceptionDescription
    Specified row index is out of range; must be between 0 and the total number of rows
    Specified column index is out of range; must be between 0 and the total number of columns
    See Also