Win32 API 日本語リファレンス
ホームWeb.MsHtml › htmlSpellCheck

htmlSpellCheck

列挙型
基底型i4

メンバー 5

名前10進16進
htmlSpellCheckNotSet00x0
htmlSpellCheckTrue10x1
htmlSpellCheckFalse20x2
htmlSpellCheckDefault30x3
htmlSpellCheck_Max21474836470x7FFFFFFF

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2147483647
enum 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