# Editors

Wisej.NET provides editor controls for user input. These typically correspond to an [\<input>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) element in the browser.

The editors come in four categories: `TextBox`, `UpDown` (Spinners), Pickers, and `ComboBox` controls. This section covers `TextBox`, `UpDown`, and Pickers, while the [ComboBox](/docs/controls/lists/combobox.md) is documented under [Lists & Grids](/docs/controls/lists.md).

## TextBox Controls

All `TextBox` controls derive from the `TextBoxBase` class, sharing consistent properties, events, and features.

In the browser, these render as a [\<div>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div) container with an [\<input>](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input) element inside.

![TextBox controls hierarchy](/files/s1ybrZQSYRkuSwRrUJy3)

## UpDown (Spinner) Controls

All `UpDown` controls derive from the `UpDownBase` class. In the browser, they render as a `<div>` container with an `<input>` element and two +/- buttons.

Wisej.NET includes numeric, text, and time spinners.

![UpDown controls types](/files/bKiDuyz58rj6efzXWv3R)

## Picker Controls

The `DateTimePicker` is the sole Picker control, inheriting directly from the `Control` base class.

![DateTimePicker control](/files/-MKGIn4jUJhudYD9xAz2)


---

# 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://docs.wisej.com/docs/controls/editors.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.
