Spread WPF 17
GrapeCity.CalcEngine Namespace / CalcReference Class / GetValue Method
The range index.
The row offset.
The column offset.


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

    Parameters

    range
    The range index.
    rowOffset
    The row offset.
    columnOffset
    The column offset.

    Return Value

    the value.
    See Also