ホーム › Web.MsHtml › sandboxAllow
sandboxAllow
列挙型メンバー 6
| 名前 | 10進 | 16進 |
|---|---|---|
| sandboxAllowScripts | 0 | 0x0 |
| sandboxAllowSameOrigin | 1 | 0x1 |
| sandboxAllowTopNavigation | 2 | 0x2 |
| sandboxAllowForms | 3 | 0x3 |
| sandboxAllowPopups | 4 | 0x4 |
| sandboxAllow_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2147483647enum 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