Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / BaseSheetDataModel Class / GetValue Method
Row index
Column index
Example


In This Topic
    GetValue Method (BaseSheetDataModel)
    In This Topic
    Gets the value for a cell at a specified row and column.
    Syntax
    'Declaration
     
    
    Public Overridable Function GetValue( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Object
    'Usage
     
    
    Dim instance As BaseSheetDataModel
    Dim row As Integer
    Dim column As Integer
    Dim value As Object
     
    value = instance.GetValue(row, column)
    public virtual object GetValue( 
       int row,
       int column
    )

    Parameters

    row
    Row index
    column
    Column index

    Return Value

    Object containing the value in the cell
    Remarks
    Use the SetValue method to add data to a cell.
    Example
    This example returns the value set for the specified column and row.
    See Also