ホーム › Web.MsHtml › htmlClear
htmlClear
列挙型メンバー 7
| 名前 | 10進 | 16進 |
|---|---|---|
| htmlClearNotSet | 0 | 0x0 |
| htmlClearAll | 1 | 0x1 |
| htmlClearLeft | 2 | 0x2 |
| htmlClearRight | 3 | 0x3 |
| htmlClearBoth | 4 | 0x4 |
| htmlClearNone | 5 | 0x5 |
| htmlClear_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum htmlClear : int {
htmlClearNotSet = 0,
htmlClearAll = 1,
htmlClearLeft = 2,
htmlClearRight = 3,
htmlClearBoth = 4,
htmlClearNone = 5,
htmlClear_Max = 2147483647
} htmlClear;public enum htmlClear : int
{
htmlClearNotSet = 0,
htmlClearAll = 1,
htmlClearLeft = 2,
htmlClearRight = 3,
htmlClearBoth = 4,
htmlClearNone = 5,
htmlClear_Max = 2147483647,
}Public Enum htmlClear As Integer
htmlClearNotSet = 0
htmlClearAll = 1
htmlClearLeft = 2
htmlClearRight = 3
htmlClearBoth = 4
htmlClearNone = 5
htmlClear_Max = 2147483647
End Enumimport enum
class htmlClear(enum.IntEnum):
htmlClearNotSet = 0
htmlClearAll = 1
htmlClearLeft = 2
htmlClearRight = 3
htmlClearBoth = 4
htmlClearNone = 5
htmlClear_Max = 2147483647// htmlClear
pub const htmlClearNotSet: i32 = 0;
pub const htmlClearAll: i32 = 1;
pub const htmlClearLeft: i32 = 2;
pub const htmlClearRight: i32 = 3;
pub const htmlClearBoth: i32 = 4;
pub const htmlClearNone: i32 = 5;
pub const htmlClear_Max: i32 = 2147483647;// htmlClear
const (
htmlClearNotSet int32 = 0
htmlClearAll int32 = 1
htmlClearLeft int32 = 2
htmlClearRight int32 = 3
htmlClearBoth int32 = 4
htmlClearNone int32 = 5
htmlClear_Max int32 = 2147483647
)const
htmlClearNotSet = 0;
htmlClearAll = 1;
htmlClearLeft = 2;
htmlClearRight = 3;
htmlClearBoth = 4;
htmlClearNone = 5;
htmlClear_Max = 2147483647;// htmlClear
pub const htmlClearNotSet: i32 = 0;
pub const htmlClearAll: i32 = 1;
pub const htmlClearLeft: i32 = 2;
pub const htmlClearRight: i32 = 3;
pub const htmlClearBoth: i32 = 4;
pub const htmlClearNone: i32 = 5;
pub const htmlClear_Max: i32 = 2147483647;const
htmlClearNotSet* = 0
htmlClearAll* = 1
htmlClearLeft* = 2
htmlClearRight* = 3
htmlClearBoth* = 4
htmlClearNone* = 5
htmlClear_Max* = 2147483647enum htmlClear : int {
htmlClearNotSet = 0,
htmlClearAll = 1,
htmlClearLeft = 2,
htmlClearRight = 3,
htmlClearBoth = 4,
htmlClearNone = 5,
htmlClear_Max = 2147483647,
}#define global htmlClearNotSet 0x0
#define global htmlClearAll 0x1
#define global htmlClearLeft 0x2
#define global htmlClearRight 0x3
#define global htmlClearBoth 0x4
#define global htmlClearNone 0x5
#define global htmlClear_Max 0x7FFFFFFF