Win32 API 日本語リファレンス
ホームUI.Ribbon › UI_EXECUTIONVERB

UI_EXECUTIONVERB

列挙型
基底型i4

メンバー 3

名前10進16進
UI_EXECUTIONVERB_EXECUTE00x0
UI_EXECUTIONVERB_PREVIEW10x1
UI_EXECUTIONVERB_CANCELPREVIEW20x2

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum UI_EXECUTIONVERB : int {
    UI_EXECUTIONVERB_EXECUTE = 0,
    UI_EXECUTIONVERB_PREVIEW = 1,
    UI_EXECUTIONVERB_CANCELPREVIEW = 2
} UI_EXECUTIONVERB;
public enum UI_EXECUTIONVERB : int
{
    UI_EXECUTIONVERB_EXECUTE = 0,
    UI_EXECUTIONVERB_PREVIEW = 1,
    UI_EXECUTIONVERB_CANCELPREVIEW = 2,
}
Public Enum UI_EXECUTIONVERB As Integer
    UI_EXECUTIONVERB_EXECUTE = 0
    UI_EXECUTIONVERB_PREVIEW = 1
    UI_EXECUTIONVERB_CANCELPREVIEW = 2
End Enum
import enum

class UI_EXECUTIONVERB(enum.IntEnum):
    UI_EXECUTIONVERB_EXECUTE = 0
    UI_EXECUTIONVERB_PREVIEW = 1
    UI_EXECUTIONVERB_CANCELPREVIEW = 2
// UI_EXECUTIONVERB
pub const UI_EXECUTIONVERB_EXECUTE: i32 = 0;
pub const UI_EXECUTIONVERB_PREVIEW: i32 = 1;
pub const UI_EXECUTIONVERB_CANCELPREVIEW: i32 = 2;
// UI_EXECUTIONVERB
const (
	UI_EXECUTIONVERB_EXECUTE int32 = 0
	UI_EXECUTIONVERB_PREVIEW int32 = 1
	UI_EXECUTIONVERB_CANCELPREVIEW int32 = 2
)
const
  UI_EXECUTIONVERB_EXECUTE = 0;
  UI_EXECUTIONVERB_PREVIEW = 1;
  UI_EXECUTIONVERB_CANCELPREVIEW = 2;
// UI_EXECUTIONVERB
pub const UI_EXECUTIONVERB_EXECUTE: i32 = 0;
pub const UI_EXECUTIONVERB_PREVIEW: i32 = 1;
pub const UI_EXECUTIONVERB_CANCELPREVIEW: i32 = 2;
const
  UI_EXECUTIONVERB_EXECUTE* = 0
  UI_EXECUTIONVERB_PREVIEW* = 1
  UI_EXECUTIONVERB_CANCELPREVIEW* = 2
enum UI_EXECUTIONVERB : int {
    UI_EXECUTIONVERB_EXECUTE = 0,
    UI_EXECUTIONVERB_PREVIEW = 1,
    UI_EXECUTIONVERB_CANCELPREVIEW = 2,
}
#define global UI_EXECUTIONVERB_EXECUTE       0x0
#define global UI_EXECUTIONVERB_PREVIEW       0x1
#define global UI_EXECUTIONVERB_CANCELPREVIEW 0x2