_NSTCROOTSTYLE
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| NSTCRS_VISIBLE | 0 | 0x0 |
| NSTCRS_HIDDEN | 1 | 0x1 |
| NSTCRS_EXPANDED | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum _NSTCROOTSTYLE : int {
NSTCRS_VISIBLE = 0,
NSTCRS_HIDDEN = 1,
NSTCRS_EXPANDED = 2
} _NSTCROOTSTYLE;public enum _NSTCROOTSTYLE : int
{
NSTCRS_VISIBLE = 0,
NSTCRS_HIDDEN = 1,
NSTCRS_EXPANDED = 2,
}Public Enum _NSTCROOTSTYLE As Integer
NSTCRS_VISIBLE = 0
NSTCRS_HIDDEN = 1
NSTCRS_EXPANDED = 2
End Enumimport enum
class _NSTCROOTSTYLE(enum.IntEnum):
NSTCRS_VISIBLE = 0
NSTCRS_HIDDEN = 1
NSTCRS_EXPANDED = 2// _NSTCROOTSTYLE
pub const NSTCRS_VISIBLE: i32 = 0;
pub const NSTCRS_HIDDEN: i32 = 1;
pub const NSTCRS_EXPANDED: i32 = 2;// _NSTCROOTSTYLE
const (
NSTCRS_VISIBLE int32 = 0
NSTCRS_HIDDEN int32 = 1
NSTCRS_EXPANDED int32 = 2
)const
NSTCRS_VISIBLE = 0;
NSTCRS_HIDDEN = 1;
NSTCRS_EXPANDED = 2;// _NSTCROOTSTYLE
pub const NSTCRS_VISIBLE: i32 = 0;
pub const NSTCRS_HIDDEN: i32 = 1;
pub const NSTCRS_EXPANDED: i32 = 2;const
NSTCRS_VISIBLE* = 0
NSTCRS_HIDDEN* = 1
NSTCRS_EXPANDED* = 2enum _NSTCROOTSTYLE : int {
NSTCRS_VISIBLE = 0,
NSTCRS_HIDDEN = 1,
NSTCRS_EXPANDED = 2,
}#define global NSTCRS_VISIBLE 0x0
#define global NSTCRS_HIDDEN 0x1
#define global NSTCRS_EXPANDED 0x2