Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Columns Class / GetByLabel Method / GetByLabel(String,Int32,Boolean) Method
The label of the column.
Column index at which to start the search.
Set to true to ignore case in the search.


In This Topic
    GetByLabel(String,Int32,Boolean) Method
    In This Topic
    Finds the column that has the specified label starting at a specified column index and lets the search ignore case.
    Syntax
    'Declaration
     
    Public Overloads Function GetByLabel( _
       ByVal label As String, _
       ByVal startIndex As Integer, _
       ByVal ignoreCase As Boolean _
    ) As Column
    'Usage
     
    Dim instance As Columns
    Dim label As String
    Dim startIndex As Integer
    Dim ignoreCase As Boolean
    Dim value As Column
     
    value = instance.GetByLabel(label, startIndex, ignoreCase)
    public Column GetByLabel( 
       string label,
       int startIndex,
       bool ignoreCase
    )

    Parameters

    label
    The label of the column.
    startIndex
    Column index at which to start the search.
    ignoreCase
    Set to true to ignore case in the search.
    See Also