Click or drag to resize

NumericMaskedTextBox<T> Class

Masked text box with a variable length numeric mask.
Inheritance Hierarchy
System.Object
  Eto.Widget
    Eto.Forms.BindableWidget
      Eto.Forms.Control
        Eto.Forms.CommonControl
          Eto.Forms.TextControl
            Eto.Forms.TextBox
              Eto.Forms.MaskedTextBox
                Eto.Forms.MaskedTextBox<T>
                  Eto.Forms.NumericMaskedTextBox<T>

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 NumericMaskedTextBox<T> type exposes the following members.

Constructors
  NameDescription
Public methodNumericMaskedTextBox<T>
Initializes a new instance of the NumericMaskedTextBox<T> 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