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

htmlInput

列挙型
基底型i4

メンバー 22

名前10進16進
htmlInputNotSet00x0
htmlInputButton10x1
htmlInputCheckbox20x2
htmlInputFile30x3
htmlInputHidden40x4
htmlInputImage50x5
htmlInputPassword60x6
htmlInputRadio70x7
htmlInputReset80x8
htmlInputSelectOne90x9
htmlInputSelectMultiple100xA
htmlInputSubmit110xB
htmlInputText120xC
htmlInputTextarea130xD
htmlInputRichtext140xE
htmlInputRange150xF
htmlInputUrl160x10
htmlInputEmail170x11
htmlInputNumber180x12
htmlInputTel190x13
htmlInputSearch200x14
htmlInput_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum htmlInput : int {
    htmlInputNotSet = 0,
    htmlInputButton = 1,
    htmlInputCheckbox = 2,
    htmlInputFile = 3,
    htmlInputHidden = 4,
    htmlInputImage = 5,
    htmlInputPassword = 6,
    htmlInputRadio = 7,
    htmlInputReset = 8,
    htmlInputSelectOne = 9,
    htmlInputSelectMultiple = 10,
    htmlInputSubmit = 11,
    htmlInputText = 12,
    htmlInputTextarea = 13,
    htmlInputRichtext = 14,
    htmlInputRange = 15,
    htmlInputUrl = 16,
    htmlInputEmail = 17,
    htmlInputNumber = 18,
    htmlInputTel = 19,
    htmlInputSearch = 20,
    htmlInput_Max = 2147483647
} htmlInput;
public enum htmlInput : int
{
    htmlInputNotSet = 0,
    htmlInputButton = 1,
    htmlInputCheckbox = 2,
    htmlInputFile = 3,
    htmlInputHidden = 4,
    htmlInputImage = 5,
    htmlInputPassword = 6,
    htmlInputRadio = 7,
    htmlInputReset = 8,
    htmlInputSelectOne = 9,
    htmlInputSelectMultiple = 10,
    htmlInputSubmit = 11,
    htmlInputText = 12,
    htmlInputTextarea = 13,
    htmlInputRichtext = 14,
    htmlInputRange = 15,
    htmlInputUrl = 16,
    htmlInputEmail = 17,
    htmlInputNumber = 18,
    htmlInputTel = 19,
    htmlInputSearch = 20,
    htmlInput_Max = 2147483647,
}
Public Enum htmlInput As Integer
    htmlInputNotSet = 0
    htmlInputButton = 1
    htmlInputCheckbox = 2
    htmlInputFile = 3
    htmlInputHidden = 4
    htmlInputImage = 5
    htmlInputPassword = 6
    htmlInputRadio = 7
    htmlInputReset = 8
    htmlInputSelectOne = 9
    htmlInputSelectMultiple = 10
    htmlInputSubmit = 11
    htmlInputText = 12
    htmlInputTextarea = 13
    htmlInputRichtext = 14
    htmlInputRange = 15
    htmlInputUrl = 16
    htmlInputEmail = 17
    htmlInputNumber = 18
    htmlInputTel = 19
    htmlInputSearch = 20
    htmlInput_Max = 2147483647
End Enum
import enum

class htmlInput(enum.IntEnum):
    htmlInputNotSet = 0
    htmlInputButton = 1
    htmlInputCheckbox = 2
    htmlInputFile = 3
    htmlInputHidden = 4
    htmlInputImage = 5
    htmlInputPassword = 6
    htmlInputRadio = 7
    htmlInputReset = 8
    htmlInputSelectOne = 9
    htmlInputSelectMultiple = 10
    htmlInputSubmit = 11
    htmlInputText = 12
    htmlInputTextarea = 13
    htmlInputRichtext = 14
    htmlInputRange = 15
    htmlInputUrl = 16
    htmlInputEmail = 17
    htmlInputNumber = 18
    htmlInputTel = 19
    htmlInputSearch = 20
    htmlInput_Max = 2147483647
// htmlInput
pub const htmlInputNotSet: i32 = 0;
pub const htmlInputButton: i32 = 1;
pub const htmlInputCheckbox: i32 = 2;
pub const htmlInputFile: i32 = 3;
pub const htmlInputHidden: i32 = 4;
pub const htmlInputImage: i32 = 5;
pub const htmlInputPassword: i32 = 6;
pub const htmlInputRadio: i32 = 7;
pub const htmlInputReset: i32 = 8;
pub const htmlInputSelectOne: i32 = 9;
pub const htmlInputSelectMultiple: i32 = 10;
pub const htmlInputSubmit: i32 = 11;
pub const htmlInputText: i32 = 12;
pub const htmlInputTextarea: i32 = 13;
pub const htmlInputRichtext: i32 = 14;
pub const htmlInputRange: i32 = 15;
pub const htmlInputUrl: i32 = 16;
pub const htmlInputEmail: i32 = 17;
pub const htmlInputNumber: i32 = 18;
pub const htmlInputTel: i32 = 19;
pub const htmlInputSearch: i32 = 20;
pub const htmlInput_Max: i32 = 2147483647;
// htmlInput
const (
	htmlInputNotSet int32 = 0
	htmlInputButton int32 = 1
	htmlInputCheckbox int32 = 2
	htmlInputFile int32 = 3
	htmlInputHidden int32 = 4
	htmlInputImage int32 = 5
	htmlInputPassword int32 = 6
	htmlInputRadio int32 = 7
	htmlInputReset int32 = 8
	htmlInputSelectOne int32 = 9
	htmlInputSelectMultiple int32 = 10
	htmlInputSubmit int32 = 11
	htmlInputText int32 = 12
	htmlInputTextarea int32 = 13
	htmlInputRichtext int32 = 14
	htmlInputRange int32 = 15
	htmlInputUrl int32 = 16
	htmlInputEmail int32 = 17
	htmlInputNumber int32 = 18
	htmlInputTel int32 = 19
	htmlInputSearch int32 = 20
	htmlInput_Max int32 = 2147483647
)
const
  htmlInputNotSet = 0;
  htmlInputButton = 1;
  htmlInputCheckbox = 2;
  htmlInputFile = 3;
  htmlInputHidden = 4;
  htmlInputImage = 5;
  htmlInputPassword = 6;
  htmlInputRadio = 7;
  htmlInputReset = 8;
  htmlInputSelectOne = 9;
  htmlInputSelectMultiple = 10;
  htmlInputSubmit = 11;
  htmlInputText = 12;
  htmlInputTextarea = 13;
  htmlInputRichtext = 14;
  htmlInputRange = 15;
  htmlInputUrl = 16;
  htmlInputEmail = 17;
  htmlInputNumber = 18;
  htmlInputTel = 19;
  htmlInputSearch = 20;
  htmlInput_Max = 2147483647;
// htmlInput
pub const htmlInputNotSet: i32 = 0;
pub const htmlInputButton: i32 = 1;
pub const htmlInputCheckbox: i32 = 2;
pub const htmlInputFile: i32 = 3;
pub const htmlInputHidden: i32 = 4;
pub const htmlInputImage: i32 = 5;
pub const htmlInputPassword: i32 = 6;
pub const htmlInputRadio: i32 = 7;
pub const htmlInputReset: i32 = 8;
pub const htmlInputSelectOne: i32 = 9;
pub const htmlInputSelectMultiple: i32 = 10;
pub const htmlInputSubmit: i32 = 11;
pub const htmlInputText: i32 = 12;
pub const htmlInputTextarea: i32 = 13;
pub const htmlInputRichtext: i32 = 14;
pub const htmlInputRange: i32 = 15;
pub const htmlInputUrl: i32 = 16;
pub const htmlInputEmail: i32 = 17;
pub const htmlInputNumber: i32 = 18;
pub const htmlInputTel: i32 = 19;
pub const htmlInputSearch: i32 = 20;
pub const htmlInput_Max: i32 = 2147483647;
const
  htmlInputNotSet* = 0
  htmlInputButton* = 1
  htmlInputCheckbox* = 2
  htmlInputFile* = 3
  htmlInputHidden* = 4
  htmlInputImage* = 5
  htmlInputPassword* = 6
  htmlInputRadio* = 7
  htmlInputReset* = 8
  htmlInputSelectOne* = 9
  htmlInputSelectMultiple* = 10
  htmlInputSubmit* = 11
  htmlInputText* = 12
  htmlInputTextarea* = 13
  htmlInputRichtext* = 14
  htmlInputRange* = 15
  htmlInputUrl* = 16
  htmlInputEmail* = 17
  htmlInputNumber* = 18
  htmlInputTel* = 19
  htmlInputSearch* = 20
  htmlInput_Max* = 2147483647
enum htmlInput : int {
    htmlInputNotSet = 0,
    htmlInputButton = 1,
    htmlInputCheckbox = 2,
    htmlInputFile = 3,
    htmlInputHidden = 4,
    htmlInputImage = 5,
    htmlInputPassword = 6,
    htmlInputRadio = 7,
    htmlInputReset = 8,
    htmlInputSelectOne = 9,
    htmlInputSelectMultiple = 10,
    htmlInputSubmit = 11,
    htmlInputText = 12,
    htmlInputTextarea = 13,
    htmlInputRichtext = 14,
    htmlInputRange = 15,
    htmlInputUrl = 16,
    htmlInputEmail = 17,
    htmlInputNumber = 18,
    htmlInputTel = 19,
    htmlInputSearch = 20,
    htmlInput_Max = 2147483647,
}
#define global htmlInputNotSet         0x0
#define global htmlInputButton         0x1
#define global htmlInputCheckbox       0x2
#define global htmlInputFile           0x3
#define global htmlInputHidden         0x4
#define global htmlInputImage          0x5
#define global htmlInputPassword       0x6
#define global htmlInputRadio          0x7
#define global htmlInputReset          0x8
#define global htmlInputSelectOne      0x9
#define global htmlInputSelectMultiple 0xA
#define global htmlInputSubmit         0xB
#define global htmlInputText           0xC
#define global htmlInputTextarea       0xD
#define global htmlInputRichtext       0xE
#define global htmlInputRange          0xF
#define global htmlInputUrl            0x10
#define global htmlInputEmail          0x11
#define global htmlInputNumber         0x12
#define global htmlInputTel            0x13
#define global htmlInputSearch         0x14
#define global htmlInput_Max           0x7FFFFFFF