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

htmlStart

列挙型
基底型i4

メンバー 3

名前10進16進
htmlStartfileopen00x0
htmlStartmouseover10x1
htmlStart_Max21474836470x7FFFFFFF

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum htmlStart : int {
    htmlStartfileopen = 0,
    htmlStartmouseover = 1,
    htmlStart_Max = 2147483647
} htmlStart;
public enum htmlStart : int
{
    htmlStartfileopen = 0,
    htmlStartmouseover = 1,
    htmlStart_Max = 2147483647,
}
Public Enum htmlStart As Integer
    htmlStartfileopen = 0
    htmlStartmouseover = 1
    htmlStart_Max = 2147483647
End Enum
import enum

class htmlStart(enum.IntEnum):
    htmlStartfileopen = 0
    htmlStartmouseover = 1
    htmlStart_Max = 2147483647
// htmlStart
pub const htmlStartfileopen: i32 = 0;
pub const htmlStartmouseover: i32 = 1;
pub const htmlStart_Max: i32 = 2147483647;
// htmlStart
const (
	htmlStartfileopen int32 = 0
	htmlStartmouseover int32 = 1
	htmlStart_Max int32 = 2147483647
)
const
  htmlStartfileopen = 0;
  htmlStartmouseover = 1;
  htmlStart_Max = 2147483647;
// htmlStart
pub const htmlStartfileopen: i32 = 0;
pub const htmlStartmouseover: i32 = 1;
pub const htmlStart_Max: i32 = 2147483647;
const
  htmlStartfileopen* = 0
  htmlStartmouseover* = 1
  htmlStart_Max* = 2147483647
enum htmlStart : int {
    htmlStartfileopen = 0,
    htmlStartmouseover = 1,
    htmlStart_Max = 2147483647,
}
#define global htmlStartfileopen  0x0
#define global htmlStartmouseover 0x1
#define global htmlStart_Max      0x7FFFFFFF