ホーム › Graphics.Gdi › MONITOR_FROM_FLAGS
MONITOR_FROM_FLAGS
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| MONITOR_DEFAULTTONEAREST | 2 | 0x2 |
| MONITOR_DEFAULTTONULL | 0 | 0x0 |
| MONITOR_DEFAULTTOPRIMARY | 1 | 0x1 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum MONITOR_FROM_FLAGS : unsigned int {
MONITOR_DEFAULTTONEAREST = 2,
MONITOR_DEFAULTTONULL = 0,
MONITOR_DEFAULTTOPRIMARY = 1
} MONITOR_FROM_FLAGS;public enum MONITOR_FROM_FLAGS : uint
{
MONITOR_DEFAULTTONEAREST = 2,
MONITOR_DEFAULTTONULL = 0,
MONITOR_DEFAULTTOPRIMARY = 1,
}Public Enum MONITOR_FROM_FLAGS As UInteger
MONITOR_DEFAULTTONEAREST = 2
MONITOR_DEFAULTTONULL = 0
MONITOR_DEFAULTTOPRIMARY = 1
End Enumimport enum
class MONITOR_FROM_FLAGS(enum.IntEnum):
MONITOR_DEFAULTTONEAREST = 2
MONITOR_DEFAULTTONULL = 0
MONITOR_DEFAULTTOPRIMARY = 1// MONITOR_FROM_FLAGS
pub const MONITOR_DEFAULTTONEAREST: u32 = 2;
pub const MONITOR_DEFAULTTONULL: u32 = 0;
pub const MONITOR_DEFAULTTOPRIMARY: u32 = 1;// MONITOR_FROM_FLAGS
const (
MONITOR_DEFAULTTONEAREST uint32 = 2
MONITOR_DEFAULTTONULL uint32 = 0
MONITOR_DEFAULTTOPRIMARY uint32 = 1
)const
MONITOR_DEFAULTTONEAREST = 2;
MONITOR_DEFAULTTONULL = 0;
MONITOR_DEFAULTTOPRIMARY = 1;// MONITOR_FROM_FLAGS
pub const MONITOR_DEFAULTTONEAREST: u32 = 2;
pub const MONITOR_DEFAULTTONULL: u32 = 0;
pub const MONITOR_DEFAULTTOPRIMARY: u32 = 1;const
MONITOR_DEFAULTTONEAREST* = 2
MONITOR_DEFAULTTONULL* = 0
MONITOR_DEFAULTTOPRIMARY* = 1enum MONITOR_FROM_FLAGS : uint {
MONITOR_DEFAULTTONEAREST = 2,
MONITOR_DEFAULTTONULL = 0,
MONITOR_DEFAULTTOPRIMARY = 1,
}#define global MONITOR_DEFAULTTONEAREST 0x2
#define global MONITOR_DEFAULTTONULL 0x0
#define global MONITOR_DEFAULTTOPRIMARY 0x1