GetByIndex

Gets the value from the field array by the column index in this DataRow.

Syntax

Function getByIndex(index As Integer) As String 

Parameters

  • Index with which the specified value is to be associated

Results

Returns the value for the column index in this DataRow. Returns empty string if the index is invalid.

Example

Dim sValue As String
sValue = dataRow.getByIndex(1)