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

htmlCellVAlign

列挙型
基底型i4

メンバー 7

名前10進16進
htmlCellVAlignNotSet00x0
htmlCellVAlignTop10x1
htmlCellVAlignMiddle20x2
htmlCellVAlignBottom30x3
htmlCellVAlignBaseline40x4
htmlCellVAlignCenter20x2
htmlCellVAlign_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum htmlCellVAlign : int {
    htmlCellVAlignNotSet = 0,
    htmlCellVAlignTop = 1,
    htmlCellVAlignMiddle = 2,
    htmlCellVAlignBottom = 3,
    htmlCellVAlignBaseline = 4,
    htmlCellVAlignCenter = 2,
    htmlCellVAlign_Max = 2147483647
} htmlCellVAlign;
public enum htmlCellVAlign : int
{
    htmlCellVAlignNotSet = 0,
    htmlCellVAlignTop = 1,
    htmlCellVAlignMiddle = 2,
    htmlCellVAlignBottom = 3,
    htmlCellVAlignBaseline = 4,
    htmlCellVAlignCenter = 2,
    htmlCellVAlign_Max = 2147483647,
}
Public Enum htmlCellVAlign As Integer
    htmlCellVAlignNotSet = 0
    htmlCellVAlignTop = 1
    htmlCellVAlignMiddle = 2
    htmlCellVAlignBottom = 3
    htmlCellVAlignBaseline = 4
    htmlCellVAlignCenter = 2
    htmlCellVAlign_Max = 2147483647
End Enum
import enum

class htmlCellVAlign(enum.IntEnum):
    htmlCellVAlignNotSet = 0
    htmlCellVAlignTop = 1
    htmlCellVAlignMiddle = 2
    htmlCellVAlignBottom = 3
    htmlCellVAlignBaseline = 4
    htmlCellVAlignCenter = 2
    htmlCellVAlign_Max = 2147483647
// htmlCellVAlign
pub const htmlCellVAlignNotSet: i32 = 0;
pub const htmlCellVAlignTop: i32 = 1;
pub const htmlCellVAlignMiddle: i32 = 2;
pub const htmlCellVAlignBottom: i32 = 3;
pub const htmlCellVAlignBaseline: i32 = 4;
pub const htmlCellVAlignCenter: i32 = 2;
pub const htmlCellVAlign_Max: i32 = 2147483647;
// htmlCellVAlign
const (
	htmlCellVAlignNotSet int32 = 0
	htmlCellVAlignTop int32 = 1
	htmlCellVAlignMiddle int32 = 2
	htmlCellVAlignBottom int32 = 3
	htmlCellVAlignBaseline int32 = 4
	htmlCellVAlignCenter int32 = 2
	htmlCellVAlign_Max int32 = 2147483647
)
const
  htmlCellVAlignNotSet = 0;
  htmlCellVAlignTop = 1;
  htmlCellVAlignMiddle = 2;
  htmlCellVAlignBottom = 3;
  htmlCellVAlignBaseline = 4;
  htmlCellVAlignCenter = 2;
  htmlCellVAlign_Max = 2147483647;
// htmlCellVAlign
pub const htmlCellVAlignNotSet: i32 = 0;
pub const htmlCellVAlignTop: i32 = 1;
pub const htmlCellVAlignMiddle: i32 = 2;
pub const htmlCellVAlignBottom: i32 = 3;
pub const htmlCellVAlignBaseline: i32 = 4;
pub const htmlCellVAlignCenter: i32 = 2;
pub const htmlCellVAlign_Max: i32 = 2147483647;
const
  htmlCellVAlignNotSet* = 0
  htmlCellVAlignTop* = 1
  htmlCellVAlignMiddle* = 2
  htmlCellVAlignBottom* = 3
  htmlCellVAlignBaseline* = 4
  htmlCellVAlignCenter* = 2
  htmlCellVAlign_Max* = 2147483647
enum htmlCellVAlign : int {
    htmlCellVAlignNotSet = 0,
    htmlCellVAlignTop = 1,
    htmlCellVAlignMiddle = 2,
    htmlCellVAlignBottom = 3,
    htmlCellVAlignBaseline = 4,
    htmlCellVAlignCenter = 2,
    htmlCellVAlign_Max = 2147483647,
}
#define global htmlCellVAlignNotSet   0x0
#define global htmlCellVAlignTop      0x1
#define global htmlCellVAlignMiddle   0x2
#define global htmlCellVAlignBottom   0x3
#define global htmlCellVAlignBaseline 0x4
#define global htmlCellVAlignCenter   0x2
#define global htmlCellVAlign_Max     0x7FFFFFFF