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

# GameInputUiNavigationButtons

> GameInputUiNavigationButtons

# GameInputUiNavigationButtons

<Warning>**En desuso.** Esta enumeración se quitó en GameInput v3 y no está disponible en la API actual.</Warning>

Define marcas de máscara de bits para los botones de navegación de la interfaz de usuario notificados por un dispositivo de entrada.

## Sintaxis

```cpp theme={null}
enum GameInputUiNavigationButtons : uint32_t
{
    GameInputUiNavigationNone       = 0x00000000,
    GameInputUiNavigationMenu       = 0x00000001,
    GameInputUiNavigationView       = 0x00000002,
    GameInputUiNavigationAccept     = 0x00000004,
    GameInputUiNavigationCancel     = 0x00000008,
    GameInputUiNavigationUp         = 0x00000010,
    GameInputUiNavigationDown       = 0x00000020,
    GameInputUiNavigationLeft       = 0x00000040,
    GameInputUiNavigationRight      = 0x00000080,
    GameInputUiNavigationContext1   = 0x00000100,
    GameInputUiNavigationContext2   = 0x00000200,
    GameInputUiNavigationContext3   = 0x00000400,
    GameInputUiNavigationContext4   = 0x00000800,
    GameInputUiNavigationPageUp     = 0x00001000,
    GameInputUiNavigationPageDown   = 0x00002000,
    GameInputUiNavigationPageLeft   = 0x00004000,
    GameInputUiNavigationPageRight  = 0x00008000,
    GameInputUiNavigationScrollUp   = 0x00010000,
    GameInputUiNavigationScrollDown = 0x00020000,
    GameInputUiNavigationScrollLeft = 0x00040000,
    GameInputUiNavigationScrollRight = 0x00080000,
};
```

## Constantes

| Constante                        | Valor      | Descripción                            |
| -------------------------------- | ---------- | -------------------------------------- |
| GameInputUiNavigationNone        | 0x00000000 | No hay botones presionados.            |
| GameInputUiNavigationMenu        | 0x00000001 | Botón Menú.                            |
| GameInputUiNavigationView        | 0x00000002 | Botón Vista.                           |
| GameInputUiNavigationAccept      | 0x00000004 | Botón Aceptar (confirmar).             |
| GameInputUiNavigationCancel      | 0x00000008 | Botón Cancelar (atrás).                |
| GameInputUiNavigationUp          | 0x00000010 | Entrada direccional arriba.            |
| GameInputUiNavigationDown        | 0x00000020 | Entrada direccional abajo.             |
| GameInputUiNavigationLeft        | 0x00000040 | Entrada direccional izquierda.         |
| GameInputUiNavigationRight       | 0x00000080 | Entrada direccional derecha.           |
| GameInputUiNavigationContext1    | 0x00000100 | Botón de acción contextual 1.          |
| GameInputUiNavigationContext2    | 0x00000200 | Botón de acción contextual 2.          |
| GameInputUiNavigationContext3    | 0x00000400 | Botón de acción contextual 3.          |
| GameInputUiNavigationContext4    | 0x00000800 | Botón de acción contextual 4.          |
| GameInputUiNavigationPageUp      | 0x00001000 | Avanzar una página hacia arriba.       |
| GameInputUiNavigationPageDown    | 0x00002000 | Avanzar una página hacia abajo.        |
| GameInputUiNavigationPageLeft    | 0x00004000 | Avanzar una página hacia la izquierda. |
| GameInputUiNavigationPageRight   | 0x00008000 | Avanzar una página hacia la derecha.   |
| GameInputUiNavigationScrollUp    | 0x00010000 | Desplazarse hacia arriba.              |
| GameInputUiNavigationScrollDown  | 0x00020000 | Desplazarse hacia abajo.               |
| GameInputUiNavigationScrollLeft  | 0x00040000 | Desplazarse hacia la izquierda.        |
| GameInputUiNavigationScrollRight | 0x00080000 | Desplazarse hacia la derecha.          |

## Historial de versiones

| Versión | Cambios       |
| ------- | ------------- |
| **v3**  | Se quitó.     |
| **v2**  | Se introdujo. |

## Consulte también

[Miembros de la API de GameInput en desuso](/reference/input/gameinput/deprecated/gameinput_deprecated_members)
[GameInputUiNavigationState](/reference/input/gameinput/deprecated/structs/gameinputuinavigationstate)
[GameInputUiNavigationInfo](/reference/input/gameinput/deprecated/structs/gameinputuinavigationinfo)


## Related topics

- [GameInputUiNavigationState](/es/reference/input/gameinput/deprecated/structs/gameinputuinavigationstate.md)
- [GameInputUiNavigationInfo](/es/reference/input/gameinput/deprecated/structs/gameinputuinavigationinfo.md)
- [GameInput](/es/reference/input/gameinput/gameinput_members.md)
- [Miembros de la API de GameInput en desuso](/es/reference/input/gameinput/deprecated/gameinput_deprecated_members.md)
- [IGameInputReading::GetUiNavigationState](/es/reference/input/gameinput/deprecated/interfaces/igameinputreading/methods/igameinputreading_getuinavigationstate.md)
