Skip to main content

NumericMask.Currency Property

Adds a currency symbol to the editor’s value.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public static string Currency { get; }

Property Value

Type Description
String

An editor’s value.

Remarks

The current culture’s CurrencyDecimalDigits property determines the mask result.

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

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

Date-Time Masks - Currency

To change the culture, use the Culture property.

See Also