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

HTMLBorder

列挙型
基底型i4

メンバー 5

名前10進16進
HTMLBorderNone00x0
HTMLBorderThick2621440x40000
HTMLBorderDialog41943040x400000
HTMLBorderThin83886080x800000
HTMLBorder_Max21474836470x7FFFFFFF

各言語での定義

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