NumericMask.Currency Property
Adds a currency symbol to the editor’s value.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.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; }
}
To change the culture, use the Culture property.
See Also