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