'Declaration
Public Default Property Item( _ ByVal row As Integer, _ ByVal column As Integer _ ) As T
'Usage
Dim instance As CellMatrix(Of T) Dim row As Integer Dim column As Integer Dim value As T instance.Item(row, column) = value value = instance.Item(row, column)
Parameters
- row
- The row must be greater than or equal to 0 and less than RowCount.
- column
- The column must be greater than or equal to 0 and less than ColumnCount.