ホーム › UI.Controls › TASKLINKSTATES
TASKLINKSTATES
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| CPTL_NORMAL | 1 | 0x1 |
| CPTL_HOT | 2 | 0x2 |
| CPTL_PRESSED | 3 | 0x3 |
| CPTL_DISABLED | 4 | 0x4 |
| CPTL_PAGE | 5 | 0x5 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum TASKLINKSTATES : int {
CPTL_NORMAL = 1,
CPTL_HOT = 2,
CPTL_PRESSED = 3,
CPTL_DISABLED = 4,
CPTL_PAGE = 5
} TASKLINKSTATES;public enum TASKLINKSTATES : int
{
CPTL_NORMAL = 1,
CPTL_HOT = 2,
CPTL_PRESSED = 3,
CPTL_DISABLED = 4,
CPTL_PAGE = 5,
}Public Enum TASKLINKSTATES As Integer
CPTL_NORMAL = 1
CPTL_HOT = 2
CPTL_PRESSED = 3
CPTL_DISABLED = 4
CPTL_PAGE = 5
End Enumimport enum
class TASKLINKSTATES(enum.IntEnum):
CPTL_NORMAL = 1
CPTL_HOT = 2
CPTL_PRESSED = 3
CPTL_DISABLED = 4
CPTL_PAGE = 5// TASKLINKSTATES
pub const CPTL_NORMAL: i32 = 1;
pub const CPTL_HOT: i32 = 2;
pub const CPTL_PRESSED: i32 = 3;
pub const CPTL_DISABLED: i32 = 4;
pub const CPTL_PAGE: i32 = 5;// TASKLINKSTATES
const (
CPTL_NORMAL int32 = 1
CPTL_HOT int32 = 2
CPTL_PRESSED int32 = 3
CPTL_DISABLED int32 = 4
CPTL_PAGE int32 = 5
)const
CPTL_NORMAL = 1;
CPTL_HOT = 2;
CPTL_PRESSED = 3;
CPTL_DISABLED = 4;
CPTL_PAGE = 5;// TASKLINKSTATES
pub const CPTL_NORMAL: i32 = 1;
pub const CPTL_HOT: i32 = 2;
pub const CPTL_PRESSED: i32 = 3;
pub const CPTL_DISABLED: i32 = 4;
pub const CPTL_PAGE: i32 = 5;const
CPTL_NORMAL* = 1
CPTL_HOT* = 2
CPTL_PRESSED* = 3
CPTL_DISABLED* = 4
CPTL_PAGE* = 5enum TASKLINKSTATES : int {
CPTL_NORMAL = 1,
CPTL_HOT = 2,
CPTL_PRESSED = 3,
CPTL_DISABLED = 4,
CPTL_PAGE = 5,
}#define global CPTL_NORMAL 0x1
#define global CPTL_HOT 0x2
#define global CPTL_PRESSED 0x3
#define global CPTL_DISABLED 0x4
#define global CPTL_PAGE 0x5