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


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

    Property Value

    true if the filter value is time 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