Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

FilterNumericRangeSliderItem.DisplayFormat Property

Gets or sets the format pattern for numeric values displayed in the editor, tooltip, and hint of the FilterNumericRangeSliderItem. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

#Declaration

C#
public string DisplayFormat { get; set; }

#Property Value

Type Description
String

The format pattern for numeric values displayed in the editor, tooltip, and hint of the FilterNumericRangeSliderItem.

#Remarks

The following example applies the Currency format for numeric values displayed in the editor, tooltip, and hint of the FilterNumericRangeSliderItem.

DevExpress Filtering UI for MAUI - Range Slider Display Format

<ContentPage ...
        xmlns:dx="http://schemas.devexpress.com/maui">
        <!--...-->
            <dx:FilterNumericRangeSliderItem ...
                    DisplayFormat="C"
                    ShowEditors="True" />
            <dx:FilterNumericRangeSliderItem ...
                    DisplayFormat="C"
                    ShowEditors="False" />
        <!--...-->
</ContentPage>

To compose format patterns, you can use standard or custom format specifiers. Refer to the following topics for more information:

See Also