Skip to main content
A newer version of this page is available. .

DxSpinEdit<T>.Mask Property

Specifies a mask pattern.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v21.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[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.

<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 code below enables the French culture.

@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