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

htmlMethod

列挙型
基底型i4

メンバー 4

名前10進16進
htmlMethodNotSet00x0
htmlMethodGet10x1
htmlMethodPost20x2
htmlMethod_Max21474836470x7FFFFFFF

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2147483647
enum 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