| NumericStepperFormatString 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
Syntaxpublic string FormatString { get; set; }Public Property FormatString As String
	Get
	Set
member FormatString : string with get, set
Property Value
Type: 
String Remarks
Remarks
            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
See Also