ホーム › Web.MsHtml › HTMLBorder
HTMLBorder
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| HTMLBorderNone | 0 | 0x0 |
| HTMLBorderThick | 262144 | 0x40000 |
| HTMLBorderDialog | 4194304 | 0x400000 |
| HTMLBorderThin | 8388608 | 0x800000 |
| HTMLBorder_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum HTMLBorder : int {
HTMLBorderNone = 0,
HTMLBorderThick = 262144,
HTMLBorderDialog = 4194304,
HTMLBorderThin = 8388608,
HTMLBorder_Max = 2147483647
} HTMLBorder;public enum HTMLBorder : int
{
HTMLBorderNone = 0,
HTMLBorderThick = 262144,
HTMLBorderDialog = 4194304,
HTMLBorderThin = 8388608,
HTMLBorder_Max = 2147483647,
}Public Enum HTMLBorder As Integer
HTMLBorderNone = 0
HTMLBorderThick = 262144
HTMLBorderDialog = 4194304
HTMLBorderThin = 8388608
HTMLBorder_Max = 2147483647
End Enumimport enum
class HTMLBorder(enum.IntEnum):
HTMLBorderNone = 0
HTMLBorderThick = 262144
HTMLBorderDialog = 4194304
HTMLBorderThin = 8388608
HTMLBorder_Max = 2147483647// HTMLBorder
pub const HTMLBorderNone: i32 = 0;
pub const HTMLBorderThick: i32 = 262144;
pub const HTMLBorderDialog: i32 = 4194304;
pub const HTMLBorderThin: i32 = 8388608;
pub const HTMLBorder_Max: i32 = 2147483647;// HTMLBorder
const (
HTMLBorderNone int32 = 0
HTMLBorderThick int32 = 262144
HTMLBorderDialog int32 = 4194304
HTMLBorderThin int32 = 8388608
HTMLBorder_Max int32 = 2147483647
)const
HTMLBorderNone = 0;
HTMLBorderThick = 262144;
HTMLBorderDialog = 4194304;
HTMLBorderThin = 8388608;
HTMLBorder_Max = 2147483647;// HTMLBorder
pub const HTMLBorderNone: i32 = 0;
pub const HTMLBorderThick: i32 = 262144;
pub const HTMLBorderDialog: i32 = 4194304;
pub const HTMLBorderThin: i32 = 8388608;
pub const HTMLBorder_Max: i32 = 2147483647;const
HTMLBorderNone* = 0
HTMLBorderThick* = 262144
HTMLBorderDialog* = 4194304
HTMLBorderThin* = 8388608
HTMLBorder_Max* = 2147483647enum HTMLBorder : int {
HTMLBorderNone = 0,
HTMLBorderThick = 262144,
HTMLBorderDialog = 4194304,
HTMLBorderThin = 8388608,
HTMLBorder_Max = 2147483647,
}#define global HTMLBorderNone 0x0
#define global HTMLBorderThick 0x40000
#define global HTMLBorderDialog 0x400000
#define global HTMLBorderThin 0x800000
#define global HTMLBorder_Max 0x7FFFFFFF