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