Spread Windows Forms 15.0
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / IReferenceSource Interface / GetValue Method / GetValue(IEvaluationContext,Int32,Int32,IPrimitiveValue) Method
An EvaluationContext object indicates the evaluation context.
An integer value indicates the row index of the 2-dimensions matrix.
An integer value indicates the column index of the 2-dimensions matrix.
An IPrimitiveValue object represents the value at the specified location.


In This Topic
    GetValue(IEvaluationContext,Int32,Int32,IPrimitiveValue) Method
    In This Topic
    Gets the value at the specified location of the 2-dimensions matrix.
    Syntax
    'Declaration
     
    
    Overloads Sub GetValue( _
       ByVal context As IEvaluationContext, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal result As IPrimitiveValue _
    ) 
    'Usage
     
    
    Dim instance As IReferenceSource
    Dim context As IEvaluationContext
    Dim row As Integer
    Dim column As Integer
    Dim result As IPrimitiveValue
     
    instance.GetValue(context, row, column, result)

    Parameters

    context
    An EvaluationContext object indicates the evaluation context.
    row
    An integer value indicates the row index of the 2-dimensions matrix.
    column
    An integer value indicates the column index of the 2-dimensions matrix.
    result
    An IPrimitiveValue object represents the value at the specified location.
    See Also