Click or drag to resize

MaskedTextBoxT Class

Masked text box that provides a value converted to/from text
Inheritance Hierarchy

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

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:Eto.Forms.MaskedTextBox`1"]

The MaskedTextBoxT type exposes the following members.

Constructors
  NameDescription
Public methodMaskedTextBoxT
Initializes a new instance of the MaskedTextBoxT class.
Public methodMaskedTextBoxT(IMaskedTextProviderT)
Initializes a new instance of the MaskedTextBoxT class with the specified masked text provider.
Top
Properties
  NameDescription
Public propertyProvider
Gets or sets the provider for the text box
Public propertyValue
Gets or sets the translated value of the masked text.
Public propertyValueBinding
Gets a binding for the Value property.
Top
Events
  NameDescription
Public eventValueChanged
Event to handle when the Value property changes
Top
Remarks
This is useful when the text can be converted to another type (e.g. DateTime, numeric, etc). The Provider specified for the control is responsible for converting the value.
See Also