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

RemoteActionType

列挙型
基底型i4

メンバー 5

名前10進16進
RemoteActionCharms00x0
RemoteActionAppbar10x1
RemoteActionSnap20x2
RemoteActionStartScreen30x3
RemoteActionAppSwitch40x4

各言語での定義

列挙メンバーの定義。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