Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / Worksheet Class / GetRichValue Method / GetRichValue(Int32,Int32,Int32,Int32) Method
An integer value indicates the top row index of cell range.
An integer value indicates the left column index of cell range.
An integer value indicates the bottom row index of cell range.
An integer value indicates the right column index of cell range.


In This Topic
    GetRichValue(Int32,Int32,Int32,Int32) Method
    In This Topic
    Gets the richvalue in the data range.
    Syntax
    'Declaration
     
    
    Public Overloads Function GetRichValue( _
       ByVal row1 As Integer, _
       ByVal column1 As Integer, _
       ByVal row2 As Integer, _
       ByVal column2 As Integer _
    ) As IRichValue
    'Usage
     
    
    Dim instance As Worksheet
    Dim row1 As Integer
    Dim column1 As Integer
    Dim row2 As Integer
    Dim column2 As Integer
    Dim value As IRichValue
     
    value = instance.GetRichValue(row1, column1, row2, column2)
    public IRichValue GetRichValue( 
       int row1,
       int column1,
       int row2,
       int column2
    )

    Parameters

    row1
    An integer value indicates the top row index of cell range.
    column1
    An integer value indicates the left column index of cell range.
    row2
    An integer value indicates the bottom row index of cell range.
    column2
    An integer value indicates the right column index of cell range.

    Return Value

    The contextual GrapeCity.CalcEngine.IRichValue object.
    See Also