Xceed Grid for WinForms v4.3 Documentation
Xceed.Editors.v2.6 Assembly / Xceed.Editors Namespace / WinNumericTextBox Class / EditFormatProvider Property


In This Topic
    EditFormatProvider Property (WinNumericTextBox)
    In This Topic
    Gets or sets the custom format provider that will be used to edit the WinNumericTextBox's Value.
    Syntax
    'Declaration
     
    <BrowsableAttribute(False)>
    <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
    Public Property EditFormatProvider As NumberFormatInfo
    'Usage
     
    Dim instance As WinNumericTextBox
    Dim value As NumberFormatInfo
     
    instance.EditFormatProvider = value
     
    value = instance.EditFormatProvider
    [Browsable(false)]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
    public NumberFormatInfo EditFormatProvider {get; set;}

    Property Value

    A System.Globalization.NumberFormatInfo representing the custom format provider that will be used to edit the WinNumericTextBox's Value. By default, DefaultEditFormatProvider.
    Remarks

    When the EditFormatProvider property is reset to its default value, the current thread's culture settings will be used.

    The list of values that can be passed to the EditFormatSpecifier property can be found in the "Format Specifiers and Format Providers" topic of the .NET Framework.

    The edit format provider can differ from the DisplayFormatProvider.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also