Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Rows Class / GetByLabel Method / GetByLabel(String,Boolean) Method
The label of the row.
Whether to ignore case in the search.


In This Topic
    GetByLabel(String,Boolean) Method
    In This Topic
    Finds the row that has the specified label and lets the search ignore the case.
    Syntax
    'Declaration
     
    Public Overloads Function GetByLabel( _
       ByVal label As String, _
       ByVal ignoreCase As Boolean _
    ) As Row
    'Usage
     
    Dim instance As Rows
    Dim label As String
    Dim ignoreCase As Boolean
    Dim value As Row
     
    value = instance.GetByLabel(label, ignoreCase)
    public Row GetByLabel( 
       string label,
       bool ignoreCase
    )

    Parameters

    label
    The label of the row.
    ignoreCase
    Whether to ignore case in the search.

    Return Value

    Returns a Row object for the specified label.
    Remarks
    Set ignoreCase to true to ignore case in the search.
    See Also