Xceed Toolkit Plus for WPF v5.0 Documentation
Xceed.Wpf.ListBox Assembly / Xceed.Wpf.Data Namespace / FilterExpression Class / IsCaseSensitive Property


In This Topic
    IsCaseSensitive Property (FilterExpression)
    In This Topic
    Gets or sets a value indicating whether the filter value is case sensitive.
    Syntax
    'Declaration
     
    Public Property IsCaseSensitive As Nullable(Of Boolean)
    'Usage
     
    Dim instance As FilterExpression
    Dim value As Nullable(Of Boolean)
     
    instance.IsCaseSensitive = value
     
    value = instance.IsCaseSensitive
    public Nullable<bool> IsCaseSensitive {get; set;}

    Property Value

    true if the filter value is case sensitive; false otherwise.
    Remarks

    Values entered into the filter row are neither case sensitive nor time sensitive. If a case- or time- sensitive value is provided via a filter expression, an exception will be thrown. In other words, when creating a filter expression that is to be assigned to a filter row programmatically, its IsCaseSenstive and IsTimeSensitive properties must both be set to false.

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also