TypedTextBox
Allows the user to enter a typed value
Last updated
Was this helpful?
Allows the user to enter a typed value
Last updated
Was this helpful?
The Wisej.NET TypedTextBox
enables defining the Value
property type for text parsing, a .NET format string (standard or custom), and format preservation settings during editing.
For a full list of properties, methods and events see the API documentation
Override parsing and formatting using the CustomFormatChanged
, Format
, and Parse
events.
Set CustomFormat
to a .NET format string. Reference the .NET documentation:
The ValueType
determines the Value
property type: System.String
, System.DateTime
, System.Int32
, System.Int64
, System.Boolean
, System.Decimal
, System.Double
, or System.Single
.
When KeepFormatOnEnter
is true
, formatting persists when users press enter or click within the TypedTextBox
. When false
, formatting hides during editing. For currency input, consider setting KeepFormatOnEnter
to false
to avoid confusion with currency symbols during typing.