Spread ASP.NET 17
FarPoint.CalcEngine Assembly / FarPoint.CalcEngine Namespace / CalcReference Class / GetValue Method
Row index
Column index
Example


In This Topic
    GetValue Method (CalcReference)
    In This Topic
    Gets the value at the specified position in the cell or range reference.
    Syntax
    'Declaration
     
    
    Public MustOverride Function GetValue( _
       ByVal row As Integer, _
       ByVal column As Integer _
    ) As Object
    'Usage
     
    
    Dim instance As CalcReference
    Dim row As Integer
    Dim column As Integer
    Dim value As Object
     
    value = instance.GetValue(row, column)
    public abstract object GetValue( 
       int row,
       int column
    )

    Parameters

    row
    Row index
    column
    Column index

    Return Value

    Object containing the value
    Example
    This example creates a custom function.
    See Also