'Declaration
Public Function TryGet( _ ByVal row As Integer, _ ByVal column As Integer, _ ByRef value As T _ ) As Boolean
'Usage
Dim instance As CellMatrix(Of T) Dim row As Integer Dim column As Integer Dim value As T Dim value As Boolean value = instance.TryGet(row, column, value)
Parameters
- row
- Row index of the cell.
- column
- Column index of the cell.
- value
- When this method returns, contains the value associated with the specified cell, if the cell has value; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.