Finds the column that has the specified label and lets the search ignore case.
Syntax
'Declaration
Public Overloads Function GetByLabel( _
ByVal As System.String, _
ByVal As System.Boolean _
) As Column
'Usage
Dim instance As Columns
Dim label As System.String
Dim ignoreCase As System.Boolean
Dim value As Column
value = instance.GetByLabel(label, ignoreCase)
public Column GetByLabel(
System.string ,
System.bool
)
Parameters
- label
- The label of the column.
- ignoreCase
- Set to
true
to ignore case in the search.
See Also