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