# Numeric UpDown

## Properties

These are the properties of Numeric UpDown, you can both read and write them

***

```lua
numupdown.Title = "My Numeric UpDown"
numupdown.Description = "This is my Numeric UpDown"
numupdown.LayoutOrder = 1 -- if not given its in order of time added
numupdown.ClearTextOnFocus = false -- true by default
numupdown.Value = 0 -- default
numupdown.Max = math.huge -- default
numupdown.Min = -math.huge -- default
numupdown.Increment = 1 -- default
```

***

## Methods

These are the methods of Numeric UpDown

***

### Remove

```lua
numericUpDown:Remove()
```

* Removes the Numeric UpDown from the page

***

## Events

These are the events of Numeric UpDown

***

### On Number Changed

```lua
numupdown.NumberChanged:Connect(function(num: number)
    print(num)
end)
```

* Fires when the Number value has changed


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://riky47s-organization.gitbook.io/arceus-x/extensions/ui-library/page/numeric-updown.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
