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

NumericUnsignedPropertyMetadataBuilderExtensions.CurrencyDataType<T>(PropertyMetadataBuilder<T, Nullable<UInt64>>) Method

Configures the property editor to display currency values.

Namespace: DevExpress.Mvvm.DataAnnotations

Assembly: DevExpress.Mvvm.v18.2.dll

Declaration

public static PropertyMetadataBuilder<T, ulong?> CurrencyDataType<T>(
    this PropertyMetadataBuilder<T, ulong?> builder
)

Parameters

Name Type Description
builder PropertyMetadataBuilder<T, Nullable<UInt64>>

A property metadata builder.

Type Parameters

Name
T

Returns

Type Description
PropertyMetadataBuilder<T, Nullable<UInt64>>

The property metadata builder instance.

Remarks

The CurrencyDataType<T> property is recognized by the GridControl, TreeListControl, DataLayoutControl and PropertyGridControl.

See the example below:


builder.Property(x => x.NullableUnsignedInt64Property)
                .CurrencyDataType();

The currency symbol and its position depend on the current culture.

Using the CurrencyDataType<T> method is equivalent to assigning the [DataType(DataType.Currency)] data annotation attribute to a data property.

See Also