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

htmlApplyLocation

列挙型
基底型i4

メンバー 3

名前10進16進
htmlApplyLocationInside00x0
htmlApplyLocationOutside10x1
htmlApplyLocation_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum htmlApplyLocation : int {
    htmlApplyLocationInside = 0,
    htmlApplyLocationOutside = 1,
    htmlApplyLocation_Max = 2147483647
} htmlApplyLocation;
public enum htmlApplyLocation : int
{
    htmlApplyLocationInside = 0,
    htmlApplyLocationOutside = 1,
    htmlApplyLocation_Max = 2147483647,
}
Public Enum htmlApplyLocation As Integer
    htmlApplyLocationInside = 0
    htmlApplyLocationOutside = 1
    htmlApplyLocation_Max = 2147483647
End Enum
import enum

class htmlApplyLocation(enum.IntEnum):
    htmlApplyLocationInside = 0
    htmlApplyLocationOutside = 1
    htmlApplyLocation_Max = 2147483647
// htmlApplyLocation
pub const htmlApplyLocationInside: i32 = 0;
pub const htmlApplyLocationOutside: i32 = 1;
pub const htmlApplyLocation_Max: i32 = 2147483647;
// htmlApplyLocation
const (
	htmlApplyLocationInside int32 = 0
	htmlApplyLocationOutside int32 = 1
	htmlApplyLocation_Max int32 = 2147483647
)
const
  htmlApplyLocationInside = 0;
  htmlApplyLocationOutside = 1;
  htmlApplyLocation_Max = 2147483647;
// htmlApplyLocation
pub const htmlApplyLocationInside: i32 = 0;
pub const htmlApplyLocationOutside: i32 = 1;
pub const htmlApplyLocation_Max: i32 = 2147483647;
const
  htmlApplyLocationInside* = 0
  htmlApplyLocationOutside* = 1
  htmlApplyLocation_Max* = 2147483647
enum htmlApplyLocation : int {
    htmlApplyLocationInside = 0,
    htmlApplyLocationOutside = 1,
    htmlApplyLocation_Max = 2147483647,
}
#define global htmlApplyLocationInside  0x0
#define global htmlApplyLocationOutside 0x1
#define global htmlApplyLocation_Max    0x7FFFFFFF