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