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

htmlSelection

列挙型
基底型i4

メンバー 5

名前10進16進
htmlSelectionNone00x0
htmlSelectionText10x1
htmlSelectionControl20x2
htmlSelectionTable30x3
htmlSelection_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum htmlSelection : int {
    htmlSelectionNone = 0,
    htmlSelectionText = 1,
    htmlSelectionControl = 2,
    htmlSelectionTable = 3,
    htmlSelection_Max = 2147483647
} htmlSelection;
public enum htmlSelection : int
{
    htmlSelectionNone = 0,
    htmlSelectionText = 1,
    htmlSelectionControl = 2,
    htmlSelectionTable = 3,
    htmlSelection_Max = 2147483647,
}
Public Enum htmlSelection As Integer
    htmlSelectionNone = 0
    htmlSelectionText = 1
    htmlSelectionControl = 2
    htmlSelectionTable = 3
    htmlSelection_Max = 2147483647
End Enum
import enum

class htmlSelection(enum.IntEnum):
    htmlSelectionNone = 0
    htmlSelectionText = 1
    htmlSelectionControl = 2
    htmlSelectionTable = 3
    htmlSelection_Max = 2147483647
// htmlSelection
pub const htmlSelectionNone: i32 = 0;
pub const htmlSelectionText: i32 = 1;
pub const htmlSelectionControl: i32 = 2;
pub const htmlSelectionTable: i32 = 3;
pub const htmlSelection_Max: i32 = 2147483647;
// htmlSelection
const (
	htmlSelectionNone int32 = 0
	htmlSelectionText int32 = 1
	htmlSelectionControl int32 = 2
	htmlSelectionTable int32 = 3
	htmlSelection_Max int32 = 2147483647
)
const
  htmlSelectionNone = 0;
  htmlSelectionText = 1;
  htmlSelectionControl = 2;
  htmlSelectionTable = 3;
  htmlSelection_Max = 2147483647;
// htmlSelection
pub const htmlSelectionNone: i32 = 0;
pub const htmlSelectionText: i32 = 1;
pub const htmlSelectionControl: i32 = 2;
pub const htmlSelectionTable: i32 = 3;
pub const htmlSelection_Max: i32 = 2147483647;
const
  htmlSelectionNone* = 0
  htmlSelectionText* = 1
  htmlSelectionControl* = 2
  htmlSelectionTable* = 3
  htmlSelection_Max* = 2147483647
enum htmlSelection : int {
    htmlSelectionNone = 0,
    htmlSelectionText = 1,
    htmlSelectionControl = 2,
    htmlSelectionTable = 3,
    htmlSelection_Max = 2147483647,
}
#define global htmlSelectionNone    0x0
#define global htmlSelectionText    0x1
#define global htmlSelectionControl 0x2
#define global htmlSelectionTable   0x3
#define global htmlSelection_Max    0x7FFFFFFF