> ## 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>**사용되지 않음.** 이 열거형은 GameInput v3에서 제거되었으며 현재 API에서는 사용할 수 없습니다.</Warning>

입력 디바이스가 보고하는 UI 탐색 버튼에 대한 비트마스크 플래그를 정의합니다.

## 구문

```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,
};
```

## 상수

| 상수                               | 값          | 설명            |
| -------------------------------- | ---------- | ------------- |
| GameInputUiNavigationNone        | 0x00000000 | 눌린 버튼이 없습니다.  |
| GameInputUiNavigationMenu        | 0x00000001 | 메뉴 버튼.        |
| GameInputUiNavigationView        | 0x00000002 | 보기 버튼.        |
| GameInputUiNavigationAccept      | 0x00000004 | 수락(확인) 버튼.    |
| GameInputUiNavigationCancel      | 0x00000008 | 취소(뒤로) 버튼.    |
| GameInputUiNavigationUp          | 0x00000010 | 위쪽 방향 입력.     |
| GameInputUiNavigationDown        | 0x00000020 | 아래쪽 방향 입력.    |
| GameInputUiNavigationLeft        | 0x00000040 | 왼쪽 방향 입력.     |
| GameInputUiNavigationRight       | 0x00000080 | 오른쪽 방향 입력.    |
| GameInputUiNavigationContext1    | 0x00000100 | 컨텍스트 액션 1 버튼. |
| GameInputUiNavigationContext2    | 0x00000200 | 컨텍스트 액션 2 버튼. |
| GameInputUiNavigationContext3    | 0x00000400 | 컨텍스트 액션 3 버튼. |
| GameInputUiNavigationContext4    | 0x00000800 | 컨텍스트 액션 4 버튼. |
| GameInputUiNavigationPageUp      | 0x00001000 | 페이지 위로.       |
| GameInputUiNavigationPageDown    | 0x00002000 | 페이지 아래로.      |
| GameInputUiNavigationPageLeft    | 0x00004000 | 페이지 왼쪽.       |
| GameInputUiNavigationPageRight   | 0x00008000 | 페이지 오른쪽.      |
| GameInputUiNavigationScrollUp    | 0x00010000 | 위로 스크롤.       |
| GameInputUiNavigationScrollDown  | 0x00020000 | 아래로 스크롤.      |
| GameInputUiNavigationScrollLeft  | 0x00040000 | 왼쪽으로 스크롤.     |
| GameInputUiNavigationScrollRight | 0x00080000 | 오른쪽으로 스크롤.    |

## 버전 기록

| 버전     | 변경 사항 |
| ------ | ----- |
| **v3** | 제거됨.  |
| **v2** | 도입됨.  |

## 함께 보기

[사용되지 않는 GameInput API 멤버](/reference/input/gameinput/deprecated/gameinput_deprecated_members)
[GameInputUiNavigationState](/reference/input/gameinput/deprecated/structs/gameinputuinavigationstate)
[GameInputUiNavigationInfo](/reference/input/gameinput/deprecated/structs/gameinputuinavigationinfo)


## Related topics

- [GameInputUiNavigationState](/ko/reference/input/gameinput/deprecated/structs/gameinputuinavigationstate.md)
- [GameInputUiNavigationInfo](/ko/reference/input/gameinput/deprecated/structs/gameinputuinavigationinfo.md)
- [GameInput](/ko/reference/input/gameinput/gameinput_members.md)
- [사용되지 않는 GameInput API 멤버](/ko/reference/input/gameinput/deprecated/gameinput_deprecated_members.md)
- [IGameInputReading::GetUiNavigationState](/ko/reference/input/gameinput/deprecated/interfaces/igameinputreading/methods/igameinputreading_getuinavigationstate.md)
