Click or drag to resize

NumericMaskedTextBoxT Class

Masked text box with a variable length numeric mask.
Inheritance Hierarchy
SystemObject
  EtoWidget
    Eto.FormsBindableWidget
      Eto.FormsControl
        Eto.FormsCommonControl
          Eto.FormsTextControl
            Eto.FormsTextBox
              Eto.FormsMaskedTextBox
                Eto.FormsMaskedTextBoxT
                  Eto.FormsNumericMaskedTextBoxT

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public class NumericMaskedTextBox<T> : MaskedTextBox<T>

Type Parameters

T
Numeric type such as int, decimal, double, etc.

The NumericMaskedTextBoxT type exposes the following members.

Constructors
  NameDescription
Public methodNumericMaskedTextBoxT
Initializes a new instance of the NumericMaskedTextBoxT class.
Top
Properties
  NameDescription
Public propertyAllowDecimal
Gets or sets a value indicating whether the mask can input a decimal.
Public propertyAllowSign
Gets or sets a value indicating whether the mask can accept a sign.
Public propertyCulture
Gets or sets the culture for the DecimalCharacter and SignCharacters formatting characters.
Public propertyProvider
Gets the numeric provider.
Top
Methods
Remarks
This provides a text box that limits the user input to only allow numeric values.
See Also