NumericUpDown
Adds supports for [System.Windows.Forms.NumericUpDown ](https://msdn.microsoft.com/en-us/library/system.windows.forms.numericupdown(v=vs.110).aspx)
Implementation Details
Component Selector: 'wm-numericupdown '
Class inheritance
NumericUpDownComponent extends ControlComponent.
PME Support
Properties
Property
Get/Set
Notify Changes
Details
decimalPlaces: number
Yes
no
Gets or sets the number of decimal places to display in the spin box (also known as an up-down control).
increment: number
Yes
No
Gets or sets the value to increment or decrement the spin box (also known as an up-down control) when the up or down buttons are clicked.
enabled: boolean
Yes
No
maximum: number
Yes
No
Gets or sets the maximum value for the spin box (also known as an up-down control).
minimum: number
Yes
No
Gets or sets the minimum allowed value for the spin box (also known as an up-down control).
value: number
Yes
Yes
Gets or sets the value assigned to the spin box (also known as an up-down control).
Methods
Method
Supported
Details
format
yes
Events
Event
Supported
Parameter
Details
ValueChanged
Yes
$event: any
Trigger ValueChanged Event. $event parameter is optional and the $event object vary depending on the type of DOM event.
Last updated
Was this helpful?