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