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