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

sandboxAllow

列挙型
基底型i4

メンバー 6

名前10進16進
sandboxAllowScripts00x0
sandboxAllowSameOrigin10x1
sandboxAllowTopNavigation20x2
sandboxAllowForms30x3
sandboxAllowPopups40x4
sandboxAllow_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum sandboxAllow : int {
    sandboxAllowScripts = 0,
    sandboxAllowSameOrigin = 1,
    sandboxAllowTopNavigation = 2,
    sandboxAllowForms = 3,
    sandboxAllowPopups = 4,
    sandboxAllow_Max = 2147483647
} sandboxAllow;
public enum sandboxAllow : int
{
    sandboxAllowScripts = 0,
    sandboxAllowSameOrigin = 1,
    sandboxAllowTopNavigation = 2,
    sandboxAllowForms = 3,
    sandboxAllowPopups = 4,
    sandboxAllow_Max = 2147483647,
}
Public Enum sandboxAllow As Integer
    sandboxAllowScripts = 0
    sandboxAllowSameOrigin = 1
    sandboxAllowTopNavigation = 2
    sandboxAllowForms = 3
    sandboxAllowPopups = 4
    sandboxAllow_Max = 2147483647
End Enum
import enum

class sandboxAllow(enum.IntEnum):
    sandboxAllowScripts = 0
    sandboxAllowSameOrigin = 1
    sandboxAllowTopNavigation = 2
    sandboxAllowForms = 3
    sandboxAllowPopups = 4
    sandboxAllow_Max = 2147483647
// sandboxAllow
pub const sandboxAllowScripts: i32 = 0;
pub const sandboxAllowSameOrigin: i32 = 1;
pub const sandboxAllowTopNavigation: i32 = 2;
pub const sandboxAllowForms: i32 = 3;
pub const sandboxAllowPopups: i32 = 4;
pub const sandboxAllow_Max: i32 = 2147483647;
// sandboxAllow
const (
	sandboxAllowScripts int32 = 0
	sandboxAllowSameOrigin int32 = 1
	sandboxAllowTopNavigation int32 = 2
	sandboxAllowForms int32 = 3
	sandboxAllowPopups int32 = 4
	sandboxAllow_Max int32 = 2147483647
)
const
  sandboxAllowScripts = 0;
  sandboxAllowSameOrigin = 1;
  sandboxAllowTopNavigation = 2;
  sandboxAllowForms = 3;
  sandboxAllowPopups = 4;
  sandboxAllow_Max = 2147483647;
// sandboxAllow
pub const sandboxAllowScripts: i32 = 0;
pub const sandboxAllowSameOrigin: i32 = 1;
pub const sandboxAllowTopNavigation: i32 = 2;
pub const sandboxAllowForms: i32 = 3;
pub const sandboxAllowPopups: i32 = 4;
pub const sandboxAllow_Max: i32 = 2147483647;
const
  sandboxAllowScripts* = 0
  sandboxAllowSameOrigin* = 1
  sandboxAllowTopNavigation* = 2
  sandboxAllowForms* = 3
  sandboxAllowPopups* = 4
  sandboxAllow_Max* = 2147483647
enum sandboxAllow : int {
    sandboxAllowScripts = 0,
    sandboxAllowSameOrigin = 1,
    sandboxAllowTopNavigation = 2,
    sandboxAllowForms = 3,
    sandboxAllowPopups = 4,
    sandboxAllow_Max = 2147483647,
}
#define global sandboxAllowScripts       0x0
#define global sandboxAllowSameOrigin    0x1
#define global sandboxAllowTopNavigation 0x2
#define global sandboxAllowForms         0x3
#define global sandboxAllowPopups        0x4
#define global sandboxAllow_Max          0x7FFFFFFF