|
|
The TextEdit control is a single-line text editor. This control isn't simply a standard TextBox control with extended support for our visual framework. It implements numerous unique data input capabilities which are in turn used by all other editors that require text input.
- Password editing.
- Customizable character casing.
- Built-in support for NULL value input.
- Unmatched mask support - no input library in the market is even close to our mask support. Masks can be as straightforward as specifying the data type and the format string that will be used to control user input – or ultra-advanced, via our full support for regular expressions.
- Display value formatting - from standard and custom format strings to manual formatting.
- The ability to parse entered values, i.e. providing a custom logic for converting entered strings into editor values.
- Advanced validation facilities - from automatic error visualization to providing any logic to check for errors and handle them.
- Two modes for edit value change notifications. In standard mode, the corresponding event is raised immediately after each change. The buffered mode allows you to avoid unnecessary notifications - the event is triggered only if the editor was idle during a short time interval.

|