ホーム › Web.MsHtml › htmlMethod
htmlMethod
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| htmlMethodNotSet | 0 | 0x0 |
| htmlMethodGet | 1 | 0x1 |
| htmlMethodPost | 2 | 0x2 |
| htmlMethod_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum htmlMethod : int {
htmlMethodNotSet = 0,
htmlMethodGet = 1,
htmlMethodPost = 2,
htmlMethod_Max = 2147483647
} htmlMethod;public enum htmlMethod : int
{
htmlMethodNotSet = 0,
htmlMethodGet = 1,
htmlMethodPost = 2,
htmlMethod_Max = 2147483647,
}Public Enum htmlMethod As Integer
htmlMethodNotSet = 0
htmlMethodGet = 1
htmlMethodPost = 2
htmlMethod_Max = 2147483647
End Enumimport enum
class htmlMethod(enum.IntEnum):
htmlMethodNotSet = 0
htmlMethodGet = 1
htmlMethodPost = 2
htmlMethod_Max = 2147483647// htmlMethod
pub const htmlMethodNotSet: i32 = 0;
pub const htmlMethodGet: i32 = 1;
pub const htmlMethodPost: i32 = 2;
pub const htmlMethod_Max: i32 = 2147483647;// htmlMethod
const (
htmlMethodNotSet int32 = 0
htmlMethodGet int32 = 1
htmlMethodPost int32 = 2
htmlMethod_Max int32 = 2147483647
)const
htmlMethodNotSet = 0;
htmlMethodGet = 1;
htmlMethodPost = 2;
htmlMethod_Max = 2147483647;// htmlMethod
pub const htmlMethodNotSet: i32 = 0;
pub const htmlMethodGet: i32 = 1;
pub const htmlMethodPost: i32 = 2;
pub const htmlMethod_Max: i32 = 2147483647;const
htmlMethodNotSet* = 0
htmlMethodGet* = 1
htmlMethodPost* = 2
htmlMethod_Max* = 2147483647enum htmlMethod : int {
htmlMethodNotSet = 0,
htmlMethodGet = 1,
htmlMethodPost = 2,
htmlMethod_Max = 2147483647,
}#define global htmlMethodNotSet 0x0
#define global htmlMethodGet 0x1
#define global htmlMethodPost 0x2
#define global htmlMethod_Max 0x7FFFFFFF