> For the complete documentation index, see [llms.txt](https://docs.gapvelocity.ai/webmap/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gapvelocity.ai/webmap/general/frontend/documentation/winforms-angular-components/web-components/kendoui-components/numericupdown.md).

# 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](/webmap/general/frontend/documentation/winforms-angular-components/web-components/base-components/control-component.md).

## 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             | Inherited from ControlComponent [see ControlComponent](/webmap/general/frontend/documentation/winforms-angular-components/web-components/base-components/control-component.md) |
| 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       | Specifies the number format which is used when the component is not focused For more information on the date and number formats Kendo UI for Angular supports, refer to the [kendo-intl GitHub repository](https://github.com/telerik/kendo-intl/blob/master/docs/num-formatting/index.md) . |

### 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. |
