[]
Get value from the data source.
object GetValue(int row, int column)
Function GetValue(row As Integer, column As Integer) As Object
| Type | Name | Description |
|---|---|---|
| int | row | Start from 0. |
| int | column | Start from 0. |
| Type | Description |
|---|---|
| object | The value. |
ITableDataSource dataSource = new ExampleTableDataSource();
object value = dataSource.GetValue(0, 0);