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

SpinEditNumberFormat Enum

Specifies possible display formats for a spin editor’s value.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public enum SpinEditNumberFormat

Members

Name Description
Custom

The displayed number is represented using a custom format pattern specified via the SpinEditProperties.DisplayFormatString property.

Currency

The displayed number is represented using a format pattern for a currency value (which is associated with the ‘c’ format character).

Percent

The displayed number is represented using a format pattern for a percentage value (which is associated with the ‘{0}%’ custom format string).

Number

The displayed number is represented using a general format pattern for a number value (which is associated with the ‘g’ format character).

Related API Members

The following properties accept/return SpinEditNumberFormat values:

Remarks

The SpinEditNumberFormat type enumerates the possible values for the SpinEditProperties.NumberFormat property.

See Also