[]
Gets an object array from a specified range of cells in the model.
public object[,] GetArray(int row, int column, int rowCount, int columnCount)
Public Function GetArray(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer) As Object(,)
| Type | Name | Description |
|---|---|---|
| int | row | Index of the starting row in the model |
| int | column | Index of the starting column in the model |
| int | rowCount | Number of rows in the model to copy |
| int | columnCount | Number of columns in the model to copy |
| Type | Description |
|---|---|
| object[,] | An object array from a specified range of cells in the model. |