ホーム › Web.MsHtml › htmlSelection
htmlSelection
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| htmlSelectionNone | 0 | 0x0 |
| htmlSelectionText | 1 | 0x1 |
| htmlSelectionControl | 2 | 0x2 |
| htmlSelectionTable | 3 | 0x3 |
| htmlSelection_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2147483647enum 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