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