ホーム › System.RemoteDesktop › RemoteActionType
RemoteActionType
列挙型メンバー 5
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| RemoteActionCharms | 0 | 0x0 | リモート セッションでチャームを表示します。 |
| RemoteActionAppbar | 1 | 0x1 | リモート セッションでアプリ バーを表示します。 |
| RemoteActionSnap | 2 | 0x2 | リモート セッションでアプリケーションをドッキングします。 |
| RemoteActionStartScreen | 3 | 0x3 | リモート セッションでスタート画面を表示させます。 |
| RemoteActionAppSwitch | 4 | 0x4 | リモート セッションでアプリケーション切り替えウィンドウを表示させます。これは、ユーザーが Alt+Tab を押した場合と同じです。 |
公式ドキュメント
リモート セッションに送信するアクションです。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 RemoteActionType : int {
RemoteActionCharms = 0,
RemoteActionAppbar = 1,
RemoteActionSnap = 2,
RemoteActionStartScreen = 3,
RemoteActionAppSwitch = 4
} RemoteActionType;public enum RemoteActionType : int
{
RemoteActionCharms = 0,
RemoteActionAppbar = 1,
RemoteActionSnap = 2,
RemoteActionStartScreen = 3,
RemoteActionAppSwitch = 4,
}Public Enum RemoteActionType As Integer
RemoteActionCharms = 0
RemoteActionAppbar = 1
RemoteActionSnap = 2
RemoteActionStartScreen = 3
RemoteActionAppSwitch = 4
End Enumimport enum
class RemoteActionType(enum.IntEnum):
RemoteActionCharms = 0
RemoteActionAppbar = 1
RemoteActionSnap = 2
RemoteActionStartScreen = 3
RemoteActionAppSwitch = 4// RemoteActionType
pub const RemoteActionCharms: i32 = 0;
pub const RemoteActionAppbar: i32 = 1;
pub const RemoteActionSnap: i32 = 2;
pub const RemoteActionStartScreen: i32 = 3;
pub const RemoteActionAppSwitch: i32 = 4;// RemoteActionType
const (
RemoteActionCharms int32 = 0
RemoteActionAppbar int32 = 1
RemoteActionSnap int32 = 2
RemoteActionStartScreen int32 = 3
RemoteActionAppSwitch int32 = 4
)const
RemoteActionCharms = 0;
RemoteActionAppbar = 1;
RemoteActionSnap = 2;
RemoteActionStartScreen = 3;
RemoteActionAppSwitch = 4;// RemoteActionType
pub const RemoteActionCharms: i32 = 0;
pub const RemoteActionAppbar: i32 = 1;
pub const RemoteActionSnap: i32 = 2;
pub const RemoteActionStartScreen: i32 = 3;
pub const RemoteActionAppSwitch: i32 = 4;const
RemoteActionCharms* = 0
RemoteActionAppbar* = 1
RemoteActionSnap* = 2
RemoteActionStartScreen* = 3
RemoteActionAppSwitch* = 4enum RemoteActionType : int {
RemoteActionCharms = 0,
RemoteActionAppbar = 1,
RemoteActionSnap = 2,
RemoteActionStartScreen = 3,
RemoteActionAppSwitch = 4,
}#define global RemoteActionCharms 0x0
#define global RemoteActionAppbar 0x1
#define global RemoteActionSnap 0x2
#define global RemoteActionStartScreen 0x3
#define global RemoteActionAppSwitch 0x4