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

DxSpinEdit<T>.Mask Property

Specifies a mask pattern.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Parameter]
public string Mask { get; set; }

#Property Value

Type Description
String

A mask pattern string.

#Remarks

Use the Mask property to set up a Spin Edit‘s mask pattern in code.

Numeric Masks

#Apply a Mask

To set up a mask, assign a desired mask pattern to the Mask property. You can use predefined mask patterns or standard numeric .NET formats to specify the mask. Note that display values depend on the current culture. For example, the same input mask may define different settings for the U.S. and Germany ( currency symbol, thousand separator, precision, and so on). For more information on available mask patterns, refer to the following topic: Numeric Masks.

Razor
<DxSpinEdit @bind-Value="Value"
            Mask="#,##0.00" />

@code{
    Double Value { get; set; }
}

Numeric Masks - X Digits Before Decimal Point

#Configure Mask Properties

If required, configure mask settings (the current culture, and so on). For this purpose, add the DxNumericMaskProperties component to the Spin Edit markup and specify the component’s properties.

The following code snippet enables the French culture.

Razor
@using System.Globalization

<DxSpinEdit @bind-Value="Value"
            Mask="@NumericMask.Currency">
    <DxNumericMaskProperties Culture="Culture" />
</DxSpinEdit>

@code{
    Double Value { get; set; }
    CultureInfo Culture = CultureInfo.GetCultureInfo("fr-FR");
}
See Also