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

htmlClear

列挙型
基底型i4

メンバー 7

名前10進16進
htmlClearNotSet00x0
htmlClearAll10x1
htmlClearLeft20x2
htmlClearRight30x3
htmlClearBoth40x4
htmlClearNone50x5
htmlClear_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum htmlClear : int {
    htmlClearNotSet = 0,
    htmlClearAll = 1,
    htmlClearLeft = 2,
    htmlClearRight = 3,
    htmlClearBoth = 4,
    htmlClearNone = 5,
    htmlClear_Max = 2147483647
} htmlClear;
public enum htmlClear : int
{
    htmlClearNotSet = 0,
    htmlClearAll = 1,
    htmlClearLeft = 2,
    htmlClearRight = 3,
    htmlClearBoth = 4,
    htmlClearNone = 5,
    htmlClear_Max = 2147483647,
}
Public Enum htmlClear As Integer
    htmlClearNotSet = 0
    htmlClearAll = 1
    htmlClearLeft = 2
    htmlClearRight = 3
    htmlClearBoth = 4
    htmlClearNone = 5
    htmlClear_Max = 2147483647
End Enum
import enum

class htmlClear(enum.IntEnum):
    htmlClearNotSet = 0
    htmlClearAll = 1
    htmlClearLeft = 2
    htmlClearRight = 3
    htmlClearBoth = 4
    htmlClearNone = 5
    htmlClear_Max = 2147483647
// htmlClear
pub const htmlClearNotSet: i32 = 0;
pub const htmlClearAll: i32 = 1;
pub const htmlClearLeft: i32 = 2;
pub const htmlClearRight: i32 = 3;
pub const htmlClearBoth: i32 = 4;
pub const htmlClearNone: i32 = 5;
pub const htmlClear_Max: i32 = 2147483647;
// htmlClear
const (
	htmlClearNotSet int32 = 0
	htmlClearAll int32 = 1
	htmlClearLeft int32 = 2
	htmlClearRight int32 = 3
	htmlClearBoth int32 = 4
	htmlClearNone int32 = 5
	htmlClear_Max int32 = 2147483647
)
const
  htmlClearNotSet = 0;
  htmlClearAll = 1;
  htmlClearLeft = 2;
  htmlClearRight = 3;
  htmlClearBoth = 4;
  htmlClearNone = 5;
  htmlClear_Max = 2147483647;
// htmlClear
pub const htmlClearNotSet: i32 = 0;
pub const htmlClearAll: i32 = 1;
pub const htmlClearLeft: i32 = 2;
pub const htmlClearRight: i32 = 3;
pub const htmlClearBoth: i32 = 4;
pub const htmlClearNone: i32 = 5;
pub const htmlClear_Max: i32 = 2147483647;
const
  htmlClearNotSet* = 0
  htmlClearAll* = 1
  htmlClearLeft* = 2
  htmlClearRight* = 3
  htmlClearBoth* = 4
  htmlClearNone* = 5
  htmlClear_Max* = 2147483647
enum htmlClear : int {
    htmlClearNotSet = 0,
    htmlClearAll = 1,
    htmlClearLeft = 2,
    htmlClearRight = 3,
    htmlClearBoth = 4,
    htmlClearNone = 5,
    htmlClear_Max = 2147483647,
}
#define global htmlClearNotSet 0x0
#define global htmlClearAll    0x1
#define global htmlClearLeft   0x2
#define global htmlClearRight  0x3
#define global htmlClearBoth   0x4
#define global htmlClearNone   0x5
#define global htmlClear_Max   0x7FFFFFFF