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

MENUPOPUPPOPUPFLAGS

列挙型
基底型i4

メンバー 14

名前10進16進
MPPF_SETFOCUS10x1
MPPF_INITIALSELECT20x2
MPPF_NOANIMATE40x4
MPPF_KEYBOARD160x10
MPPF_REPOSITION320x20
MPPF_FORCEZORDER640x40
MPPF_FINALSELECT1280x80
MPPF_TOP5368709120x20000000
MPPF_LEFT10737418240x40000000
MPPF_RIGHT16106127360x60000000
MPPF_BOTTOM-21474836480x80000000
MPPF_POS_MASK-5368709120xE0000000
MPPF_ALIGN_LEFT335544320x2000000
MPPF_ALIGN_RIGHT671088640x4000000

各言語での定義

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

typedef enum MENUPOPUPPOPUPFLAGS : int {
    MPPF_SETFOCUS = 1,
    MPPF_INITIALSELECT = 2,
    MPPF_NOANIMATE = 4,
    MPPF_KEYBOARD = 16,
    MPPF_REPOSITION = 32,
    MPPF_FORCEZORDER = 64,
    MPPF_FINALSELECT = 128,
    MPPF_TOP = 536870912,
    MPPF_LEFT = 1073741824,
    MPPF_RIGHT = 1610612736,
    MPPF_BOTTOM = -2147483648,
    MPPF_POS_MASK = -536870912,
    MPPF_ALIGN_LEFT = 33554432,
    MPPF_ALIGN_RIGHT = 67108864
} MENUPOPUPPOPUPFLAGS;
public enum MENUPOPUPPOPUPFLAGS : int
{
    MPPF_SETFOCUS = 1,
    MPPF_INITIALSELECT = 2,
    MPPF_NOANIMATE = 4,
    MPPF_KEYBOARD = 16,
    MPPF_REPOSITION = 32,
    MPPF_FORCEZORDER = 64,
    MPPF_FINALSELECT = 128,
    MPPF_TOP = 536870912,
    MPPF_LEFT = 1073741824,
    MPPF_RIGHT = 1610612736,
    MPPF_BOTTOM = -2147483648,
    MPPF_POS_MASK = -536870912,
    MPPF_ALIGN_LEFT = 33554432,
    MPPF_ALIGN_RIGHT = 67108864,
}
Public Enum MENUPOPUPPOPUPFLAGS As Integer
    MPPF_SETFOCUS = 1
    MPPF_INITIALSELECT = 2
    MPPF_NOANIMATE = 4
    MPPF_KEYBOARD = 16
    MPPF_REPOSITION = 32
    MPPF_FORCEZORDER = 64
    MPPF_FINALSELECT = 128
    MPPF_TOP = 536870912
    MPPF_LEFT = 1073741824
    MPPF_RIGHT = 1610612736
    MPPF_BOTTOM = -2147483648
    MPPF_POS_MASK = -536870912
    MPPF_ALIGN_LEFT = 33554432
    MPPF_ALIGN_RIGHT = 67108864
End Enum
import enum

class MENUPOPUPPOPUPFLAGS(enum.IntEnum):
    MPPF_SETFOCUS = 1
    MPPF_INITIALSELECT = 2
    MPPF_NOANIMATE = 4
    MPPF_KEYBOARD = 16
    MPPF_REPOSITION = 32
    MPPF_FORCEZORDER = 64
    MPPF_FINALSELECT = 128
    MPPF_TOP = 536870912
    MPPF_LEFT = 1073741824
    MPPF_RIGHT = 1610612736
    MPPF_BOTTOM = -2147483648
    MPPF_POS_MASK = -536870912
    MPPF_ALIGN_LEFT = 33554432
    MPPF_ALIGN_RIGHT = 67108864
// MENUPOPUPPOPUPFLAGS
pub const MPPF_SETFOCUS: i32 = 1;
pub const MPPF_INITIALSELECT: i32 = 2;
pub const MPPF_NOANIMATE: i32 = 4;
pub const MPPF_KEYBOARD: i32 = 16;
pub const MPPF_REPOSITION: i32 = 32;
pub const MPPF_FORCEZORDER: i32 = 64;
pub const MPPF_FINALSELECT: i32 = 128;
pub const MPPF_TOP: i32 = 536870912;
pub const MPPF_LEFT: i32 = 1073741824;
pub const MPPF_RIGHT: i32 = 1610612736;
pub const MPPF_BOTTOM: i32 = -2147483648;
pub const MPPF_POS_MASK: i32 = -536870912;
pub const MPPF_ALIGN_LEFT: i32 = 33554432;
pub const MPPF_ALIGN_RIGHT: i32 = 67108864;
// MENUPOPUPPOPUPFLAGS
const (
	MPPF_SETFOCUS int32 = 1
	MPPF_INITIALSELECT int32 = 2
	MPPF_NOANIMATE int32 = 4
	MPPF_KEYBOARD int32 = 16
	MPPF_REPOSITION int32 = 32
	MPPF_FORCEZORDER int32 = 64
	MPPF_FINALSELECT int32 = 128
	MPPF_TOP int32 = 536870912
	MPPF_LEFT int32 = 1073741824
	MPPF_RIGHT int32 = 1610612736
	MPPF_BOTTOM int32 = -2147483648
	MPPF_POS_MASK int32 = -536870912
	MPPF_ALIGN_LEFT int32 = 33554432
	MPPF_ALIGN_RIGHT int32 = 67108864
)
const
  MPPF_SETFOCUS = 1;
  MPPF_INITIALSELECT = 2;
  MPPF_NOANIMATE = 4;
  MPPF_KEYBOARD = 16;
  MPPF_REPOSITION = 32;
  MPPF_FORCEZORDER = 64;
  MPPF_FINALSELECT = 128;
  MPPF_TOP = 536870912;
  MPPF_LEFT = 1073741824;
  MPPF_RIGHT = 1610612736;
  MPPF_BOTTOM = -2147483648;
  MPPF_POS_MASK = -536870912;
  MPPF_ALIGN_LEFT = 33554432;
  MPPF_ALIGN_RIGHT = 67108864;
// MENUPOPUPPOPUPFLAGS
pub const MPPF_SETFOCUS: i32 = 1;
pub const MPPF_INITIALSELECT: i32 = 2;
pub const MPPF_NOANIMATE: i32 = 4;
pub const MPPF_KEYBOARD: i32 = 16;
pub const MPPF_REPOSITION: i32 = 32;
pub const MPPF_FORCEZORDER: i32 = 64;
pub const MPPF_FINALSELECT: i32 = 128;
pub const MPPF_TOP: i32 = 536870912;
pub const MPPF_LEFT: i32 = 1073741824;
pub const MPPF_RIGHT: i32 = 1610612736;
pub const MPPF_BOTTOM: i32 = -2147483648;
pub const MPPF_POS_MASK: i32 = -536870912;
pub const MPPF_ALIGN_LEFT: i32 = 33554432;
pub const MPPF_ALIGN_RIGHT: i32 = 67108864;
const
  MPPF_SETFOCUS* = 1
  MPPF_INITIALSELECT* = 2
  MPPF_NOANIMATE* = 4
  MPPF_KEYBOARD* = 16
  MPPF_REPOSITION* = 32
  MPPF_FORCEZORDER* = 64
  MPPF_FINALSELECT* = 128
  MPPF_TOP* = 536870912
  MPPF_LEFT* = 1073741824
  MPPF_RIGHT* = 1610612736
  MPPF_BOTTOM* = -2147483648
  MPPF_POS_MASK* = -536870912
  MPPF_ALIGN_LEFT* = 33554432
  MPPF_ALIGN_RIGHT* = 67108864
enum MENUPOPUPPOPUPFLAGS : int {
    MPPF_SETFOCUS = 1,
    MPPF_INITIALSELECT = 2,
    MPPF_NOANIMATE = 4,
    MPPF_KEYBOARD = 16,
    MPPF_REPOSITION = 32,
    MPPF_FORCEZORDER = 64,
    MPPF_FINALSELECT = 128,
    MPPF_TOP = 536870912,
    MPPF_LEFT = 1073741824,
    MPPF_RIGHT = 1610612736,
    MPPF_BOTTOM = -2147483648,
    MPPF_POS_MASK = -536870912,
    MPPF_ALIGN_LEFT = 33554432,
    MPPF_ALIGN_RIGHT = 67108864,
}
#define global MPPF_SETFOCUS      0x1
#define global MPPF_INITIALSELECT 0x2
#define global MPPF_NOANIMATE     0x4
#define global MPPF_KEYBOARD      0x10
#define global MPPF_REPOSITION    0x20
#define global MPPF_FORCEZORDER   0x40
#define global MPPF_FINALSELECT   0x80
#define global MPPF_TOP           0x20000000
#define global MPPF_LEFT          0x40000000
#define global MPPF_RIGHT         0x60000000
#define global MPPF_BOTTOM        0x80000000
#define global MPPF_POS_MASK      0xE0000000
#define global MPPF_ALIGN_LEFT    0x2000000
#define global MPPF_ALIGN_RIGHT   0x4000000