'Declaration
Function GetRangeCache( _ ByVal source As IReferenceSource, _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal row2 As Integer, _ ByVal column2 As Integer _ ) As RangeCache
'Usage
Dim instance As IEvaluationContext Dim source As IReferenceSource Dim row As Integer Dim column As Integer Dim row2 As Integer Dim column2 As Integer Dim value As RangeCache value = instance.GetRangeCache(source, row, column, row2, column2)
Parameters
- source
- The source of data.
- row
- if set to
true
, look up in row; otherwise, lookup in column. - column
- If row is
true
, indicates the row index; otherwise, indicates the column index. - row2
- If row is
true
, indicates the first column; otherwise, indicates the first row. - column2
- If row is
true
, indicates the last column; otherwise, indicates the last row.
Return Value
The RangeCache object if it's available.