![]() |
Sylloge
A C# helper library
|
An extended TextBox class that allows for specific data to be entered as well autoscrolling. More...
Public Types | |
| enum | TextboxType { Default, Numeric, AlphaNumeric } |
| Describes the Textbox type. NOTE: ALL types handle control messages (backspace, enter, etc.) More... | |
Public Member Functions | |
| Textbox () | |
| The default constructor for this class. | |
Properties | |
| TextboxType | Type [get, set] |
| The type of text box control. | |
| bool | AutoScroll [get, set] |
| Gets or sets whether to auto scroll the text box on text change. | |
An extended TextBox class that allows for specific data to be entered as well autoscrolling.
Definition at line 60 of file ControlExtensions.cs.
Describes the Textbox type. NOTE: ALL types handle control messages (backspace, enter, etc.)
| Default |
Default Textbox type, handles all keys. |
| Numeric |
Type handles only numeric keypresses for input. |
| AlphaNumeric |
Type handles only numbers and letters for input. |
Definition at line 66 of file ControlExtensions.cs.
| Sylloge.Controls.Textbox.Textbox | ( | ) |
The default constructor for this class.
Definition at line 95 of file ControlExtensions.cs.
bool Sylloge.Controls.Textbox.AutoScroll [get, set] |
Gets or sets whether to auto scroll the text box on text change.
Definition at line 90 of file ControlExtensions.cs.
TextboxType Sylloge.Controls.Textbox.Type [get, set] |
The type of text box control.
Definition at line 85 of file ControlExtensions.cs.
1.7.4