'Declaration Public Overloads Function GetArray( _ ByVal row As System.Integer, _ ByVal column As System.Integer, _ ByVal rowCount As System.Integer, _ ByVal columnCount As System.Integer _ ) As System.Object(,)
'Usage Dim instance As Worksheet Dim row As System.Integer Dim column As System.Integer Dim rowCount As System.Integer Dim columnCount As System.Integer Dim value() As System.Object value = instance.GetArray(row, column, rowCount, columnCount)
public System.object[,] GetArray( System.int row, System.int column, System.int rowCount, System.int columnCount )
Parameters
- row
- Row index of the cell from which to read into the array
- column
- Column index of the cell from which to read into the array
- rowCount
- Number of rows in the array
- columnCount
- Number of columns in the array