ホーム › Media.DirectShow › DVD_RELATIVE_BUTTON
DVD_RELATIVE_BUTTON
列挙型メンバー 4
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| DVD_Relative_Upper | 1 | 0x1 | 上ボタン。 |
| DVD_Relative_Lower | 2 | 0x2 | 下ボタン。 |
| DVD_Relative_Left | 3 | 0x3 | 左ボタン。 |
| DVD_Relative_Right | 4 | 0x4 | 右ボタン。 |
公式ドキュメント
[このページに関連する機能である DirectShow はレガシー機能です。MediaPlayer、IMFMediaEngine、および Media Foundation でのオーディオ/ビデオ キャプチャ に置き換えられています。これらの機能は Windows 10 および Windows 11 向けに最適化されています。Microsoft は、可能な限り新しいコードで DirectShow ではなく MediaPlayer、IMFMediaEngine、Media Foundation でのオーディオ/ビデオ キャプチャ を使用することを強く推奨します。また、レガシー API を使用している既存のコードについても、可能であれば新しい API を使用するように書き直すことを推奨します。]
DVD メニューのナビゲーションやその他の操作に使用される 4 つの方向ボタンを識別します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum DVD_RELATIVE_BUTTON : int {
DVD_Relative_Upper = 1,
DVD_Relative_Lower = 2,
DVD_Relative_Left = 3,
DVD_Relative_Right = 4
} DVD_RELATIVE_BUTTON;public enum DVD_RELATIVE_BUTTON : int
{
DVD_Relative_Upper = 1,
DVD_Relative_Lower = 2,
DVD_Relative_Left = 3,
DVD_Relative_Right = 4,
}Public Enum DVD_RELATIVE_BUTTON As Integer
DVD_Relative_Upper = 1
DVD_Relative_Lower = 2
DVD_Relative_Left = 3
DVD_Relative_Right = 4
End Enumimport enum
class DVD_RELATIVE_BUTTON(enum.IntEnum):
DVD_Relative_Upper = 1
DVD_Relative_Lower = 2
DVD_Relative_Left = 3
DVD_Relative_Right = 4// DVD_RELATIVE_BUTTON
pub const DVD_Relative_Upper: i32 = 1;
pub const DVD_Relative_Lower: i32 = 2;
pub const DVD_Relative_Left: i32 = 3;
pub const DVD_Relative_Right: i32 = 4;// DVD_RELATIVE_BUTTON
const (
DVD_Relative_Upper int32 = 1
DVD_Relative_Lower int32 = 2
DVD_Relative_Left int32 = 3
DVD_Relative_Right int32 = 4
)const
DVD_Relative_Upper = 1;
DVD_Relative_Lower = 2;
DVD_Relative_Left = 3;
DVD_Relative_Right = 4;// DVD_RELATIVE_BUTTON
pub const DVD_Relative_Upper: i32 = 1;
pub const DVD_Relative_Lower: i32 = 2;
pub const DVD_Relative_Left: i32 = 3;
pub const DVD_Relative_Right: i32 = 4;const
DVD_Relative_Upper* = 1
DVD_Relative_Lower* = 2
DVD_Relative_Left* = 3
DVD_Relative_Right* = 4enum DVD_RELATIVE_BUTTON : int {
DVD_Relative_Upper = 1,
DVD_Relative_Lower = 2,
DVD_Relative_Left = 3,
DVD_Relative_Right = 4,
}#define global DVD_Relative_Upper 0x1
#define global DVD_Relative_Lower 0x2
#define global DVD_Relative_Left 0x3
#define global DVD_Relative_Right 0x4