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