Skip to main content

NumericMask.RealNumber Property

Applies the Fixed-Point format to the editor’s value.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public static string RealNumber { get; }

Property Value

Type Description
String

An editor’s value.

Remarks

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

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

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

Date-Time Masks - RealNumber

To change the culture, use the Culture property.

See Also