# Widget Options Constants

There are several option types that can be specified in the widget options table, which are exposed to the user via the Widget Settings menu.\
\
For example:

```
-- Create a table with default options
-- Options can be changed by the user from the Widget Settings menu
-- Notice that each line is a table inside { }
local options = {
  { "Source", SOURCE, 1 },
  -- BOOL is actually not a boolean, but toggles between 0 and 1
  { "Boolean", BOOL, 1 },
  { "Value", VALUE, 1, 0, 10},
  { "Color", COLOR, ORANGE },
  { "Text", STRING, "Max8chrs" }
}

```

| Type       | Description                                                                              |
| ---------- | ---------------------------------------------------------------------------------------- |
| COLOR      | Displays a color picker, returns a color flag value                                      |
| BOOL       | Displays a toggle/checkbox, value toggles between 0 and 1                                |
| STRING     | Text input option, limited to 8 characters                                               |
| TIMER      | Choice option, lets you pick from available timers                                       |
| SOURCE     | Choice option, lets you pick from available sources (i.e. sticks, switches, LS)          |
| VALUE      | Numerical input option, can specify default, min and max value                           |
| TEXT\_SIZE | Choice option, lets you pick from the available text sizes (i.e. small, large)           |
| ALIGNMENT  | Choice option, lets you pick from available alignment options (i.e. left, center, right) |


---

# 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://luadoc.edgetx.org/2.10/part_iii_-_opentx_lua_api_reference/constants/widget-options.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.
