> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# XGameUiTextEntryInputScope

> XGameUiTextEntryInputScope

# XGameUiTextEntryInputScope

Enumerates types of information expected in text entry.

<a id="syntaxSection" />

## Syntax

```cpp theme={null}
enum class XGameUiTextEntryInputScope : uint32_t  
{  
    Default = 0,  
    Url = 1,  
    EmailSmtpAddress = 5,  
    Number = 29,  
    Password = 31,  
    TelephoneNumber = 32,  
    Alphanumeric = 40,  
    Search = 50,
    ChatWithoutEmoji = 68
}  
```

<a id="constantsSection" />

## Constants

| Constant         | Description                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Default          | No input scope. This will be a fully localized keyboard with no special buttons. This keyboard will show emojis.                                                                                                                                                                                                                                                                                                                                 |
| Url              | A uniform resource identifier (URI). This can include naming formats such as URL, file, or File Transfer Protocol (FTP). This will a fully localized keyboard that includes language-specific ".COM" buttons.                                                                                                                                                                                                                                    |
| EmailSmtpAddress | An email address in Simple Mail Transport Protocol (SMTP) form (*accountname*@*host*). This will be a fully localized keyboard with the "@" button featured prominently.                                                                                                                                                                                                                                                                         |
| Number           | Numerical digits (0 through 9).                                                                                                                                                                                                                                                                                                                                                                                                                  |
| Password         | A password, including alphanumeric characters and other symbols, such as punctuation and mathematical symbols. This will be a fully localized keyboard where the textbox hides characters as the user types. Using this with either [XGameUiTextEntryOpen](/reference/system/xgameui/functions/xgameuitextentryopen) or [XGameUiTextEntryUpdatePositionHint](/reference/system/xgameui/functions/xgameuitextentryupdatepositionhint) is invalid. |
| TelephoneNumber  | A telephone number. Using this with either [XGameUiTextEntryOpen](/reference/system/xgameui/functions/xgameuitextentryopen) or [XGameUiTextEntryUpdatePositionHint](/reference/system/xgameui/functions/xgameuitextentryupdatepositionhint) is invalid.                                                                                                                                                                                          |
| Alphanumeric     | Alphanumeric characters. This will show a Latin keyboard without any special buttons.                                                                                                                                                                                                                                                                                                                                                            |
| Search           | A search string. This will show a fully localized keyboard with the "enter" button labeled "Search". Using this with either [XGameUiTextEntryOpen](/reference/system/xgameui/functions/xgameuitextentryopen) or [XGameUiTextEntryUpdatePositionHint](/reference/system/xgameui/functions/xgameuitextentryupdatepositionhint) is invalid.                                                                                                         |
| ChatWithoutEmoji | This will show a fully localized keyboard without emojis.                                                                                                                                                                                                                                                                                                                                                                                        |

<a id="remarksSection" />

## Remarks

The [XGameUiShowTextEntryAsync](/reference/system/xgameui/functions/xgameuishowtextentryasync),
[XGameUiTextEntryOpen](/reference/system/xgameui/functions/xgameuitextentryopen), and
[XGameUiTextEntryUpdatePositionHint](/reference/system/xgameui/functions/xgameuitextentryupdatepositionhint) function all use this
enumeration.

<a id="requirementsSection" />

## Requirements

**Header:** XGameUI.h

**Supported platforms:** Windows, XBOX One family consoles and XBOX Series consoles

<a id="seealsoSection" />

## See also

[XGameUI](/reference/system/xgameui/xgameui_members)


## Related topics

- [XGameUiShowTextEntryAsync](/reference/system/xgameui/functions/xgameuishowtextentryasync.md)
- [XGameUiTextEntryOptions](/reference/system/xgameui/structs/xgameuitextentryoptions.md)
- [XGameUiShowTextEntryUiCallback](/reference/system/xgameui/functions/xgameuishowtextentryuicallback.md)
- [XGameUI](/reference/system/xgameui/xgameui_members.md)
- [XGameUiTextEntryClose](/reference/system/xgameui/functions/xgameuitextentryclose.md)
