Skip to main content
All docs
V25.2
  • IRibbonComboBox<TData, TValue>.SearchFilterCondition Property

    Specifies the search and filter condition.

    Namespace: DevExpress.Blazor.Ribbon

    Assembly: DevExpress.Blazor.v25.2.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(null)]
    ListSearchFilterCondition SearchFilterCondition { get; set; }

    Property Value

    Type Default Description
    ListSearchFilterCondition null

    An enumeration value.

    Available values:

    Name Description
    Default

    The Contains condition is used. Filters the component for items that contain the search string. Search string matches are highlighted.

    StartsWith

    Filters the component for items that begin with the search string.

    Contains

    Filters the component for items that contain the search string. Search string matches are highlighted.

    Equals

    Searches for items whose value matches the search string.

    Remarks

    Refer to the SearchFilterCondition property description for more information and examples.

    See Also