ホーム › Graphics.Gdi › DC_LAYOUT
DC_LAYOUT
列挙型フラグメンバー 2
| 名前 | 10進 | 16進 |
|---|---|---|
| LAYOUT_BITMAPORIENTATIONPRESERVED | 8 | 0x8 |
| LAYOUT_RTL | 1 | 0x1 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum DC_LAYOUT : unsigned int {
LAYOUT_BITMAPORIENTATIONPRESERVED = 8,
LAYOUT_RTL = 1
} DC_LAYOUT;[Flags]
public enum DC_LAYOUT : uint
{
LAYOUT_BITMAPORIENTATIONPRESERVED = 8,
LAYOUT_RTL = 1,
}<Flags>
Public Enum DC_LAYOUT As UInteger
LAYOUT_BITMAPORIENTATIONPRESERVED = 8
LAYOUT_RTL = 1
End Enumimport enum
class DC_LAYOUT(enum.IntFlag):
LAYOUT_BITMAPORIENTATIONPRESERVED = 8
LAYOUT_RTL = 1// DC_LAYOUT (flags)
pub const LAYOUT_BITMAPORIENTATIONPRESERVED: u32 = 8;
pub const LAYOUT_RTL: u32 = 1;// DC_LAYOUT
const (
LAYOUT_BITMAPORIENTATIONPRESERVED uint32 = 8
LAYOUT_RTL uint32 = 1
)const
LAYOUT_BITMAPORIENTATIONPRESERVED = 8;
LAYOUT_RTL = 1;// DC_LAYOUT
pub const LAYOUT_BITMAPORIENTATIONPRESERVED: u32 = 8;
pub const LAYOUT_RTL: u32 = 1;const
LAYOUT_BITMAPORIENTATIONPRESERVED* = 8
LAYOUT_RTL* = 1enum DC_LAYOUT : uint {
LAYOUT_BITMAPORIENTATIONPRESERVED = 8,
LAYOUT_RTL = 1,
}#define global LAYOUT_BITMAPORIENTATIONPRESERVED 0x8
#define global LAYOUT_RTL 0x1
; ※フラグ列挙型。ビットORで組み合わせ可(例: FOO|BAR)。