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