Skip to main content

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

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