NumericStepperIHandlerFormatString Property |
Gets or sets the format string for the display of the numeric value.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax string FormatString { get; set; }
Property FormatString As String
Get
Set
abstract FormatString : string with get, set
Property Value
Type:
StringRemarks
This can be used to specify standard or custom format strings used via
ToString(String, IFormatProvider).
The exact output is determined using the specified
CultureInfo.
For example "c" would show a currency value.
Any extra non-numeric or separator characters are stripped when parsing the string so that you can include extra (non-numeric)
string values while still allowing the user to change the numeric string.
See Also