EasyLanguage Object Reference
Represents an up-down control (also known as a spin box) that displays numeric values.
Namespace: elsystem.windows.forms
Name |
Type |
Description | |
DecimalPlaces |
double |
Gets or sets the number of decimal places to display in the up-down control. | |
Increment |
double |
Gets or sets how much to increment or decrement Value when the up or down buttons are clicked. | |
Maximum |
double |
Gets or sets the maximum value for the up-down control. | |
Minimum |
double |
Gets or sets the minimum allowed value for the up-down control. |
|
TextAlign |
object |
Gets or sets the alignment of the text in for the up-down control. |
|
Value |
double |
Gets or sets the value assigned to for the up-down control. |
Additional properties, methods, and events are described in the classes listed under Inheritance Hierarchy (see below).
Name | Description | |
Create() | Initializes a new instance of a numeric up-down control. | |
Create(width,height) | Initializes a new instance of a numeric up-down control. Parameters include the Width and Height of the control. | |
Create(value,minvalue,maxvalue) | Initializes a new instance of a numeric up-down control. Parameters include the initial Value, the Minimum value, and the Maximum value of the control. |
Name | Description | |
ValueChanged | Occurs when the Value property has been changed in some way. See EventArgs for the properties returned by the handler's args parameter. |