Win32 API 日本語リファレンス
ホームSystem.RemoteDesktop › RemoteActionType

RemoteActionType

列挙型
基底型i4

メンバー 5

名前10進16進説明
RemoteActionCharms00x0リモート セッションでチャームを表示します。
RemoteActionAppbar10x1リモート セッションでアプリ バーを表示します。
RemoteActionSnap20x2リモート セッションでアプリケーションをドッキングします。
RemoteActionStartScreen30x3リモート セッションでスタート画面を表示させます。
RemoteActionAppSwitch40x4リモート セッションでアプリケーション切り替えウィンドウを表示させます。これは、ユーザーが Alt+Tab を押した場合と同じです。

公式ドキュメント

リモート セッションに送信するアクションです。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
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 Enum
import 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* = 4
enum 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