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

htmlCaptionVAlign

列挙型
基底型i4

メンバー 4

名前10進16進
htmlCaptionVAlignNotSet00x0
htmlCaptionVAlignTop10x1
htmlCaptionVAlignBottom20x2
htmlCaptionVAlign_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum htmlCaptionVAlign : int {
    htmlCaptionVAlignNotSet = 0,
    htmlCaptionVAlignTop = 1,
    htmlCaptionVAlignBottom = 2,
    htmlCaptionVAlign_Max = 2147483647
} htmlCaptionVAlign;
public enum htmlCaptionVAlign : int
{
    htmlCaptionVAlignNotSet = 0,
    htmlCaptionVAlignTop = 1,
    htmlCaptionVAlignBottom = 2,
    htmlCaptionVAlign_Max = 2147483647,
}
Public Enum htmlCaptionVAlign As Integer
    htmlCaptionVAlignNotSet = 0
    htmlCaptionVAlignTop = 1
    htmlCaptionVAlignBottom = 2
    htmlCaptionVAlign_Max = 2147483647
End Enum
import enum

class htmlCaptionVAlign(enum.IntEnum):
    htmlCaptionVAlignNotSet = 0
    htmlCaptionVAlignTop = 1
    htmlCaptionVAlignBottom = 2
    htmlCaptionVAlign_Max = 2147483647
// htmlCaptionVAlign
pub const htmlCaptionVAlignNotSet: i32 = 0;
pub const htmlCaptionVAlignTop: i32 = 1;
pub const htmlCaptionVAlignBottom: i32 = 2;
pub const htmlCaptionVAlign_Max: i32 = 2147483647;
// htmlCaptionVAlign
const (
	htmlCaptionVAlignNotSet int32 = 0
	htmlCaptionVAlignTop int32 = 1
	htmlCaptionVAlignBottom int32 = 2
	htmlCaptionVAlign_Max int32 = 2147483647
)
const
  htmlCaptionVAlignNotSet = 0;
  htmlCaptionVAlignTop = 1;
  htmlCaptionVAlignBottom = 2;
  htmlCaptionVAlign_Max = 2147483647;
// htmlCaptionVAlign
pub const htmlCaptionVAlignNotSet: i32 = 0;
pub const htmlCaptionVAlignTop: i32 = 1;
pub const htmlCaptionVAlignBottom: i32 = 2;
pub const htmlCaptionVAlign_Max: i32 = 2147483647;
const
  htmlCaptionVAlignNotSet* = 0
  htmlCaptionVAlignTop* = 1
  htmlCaptionVAlignBottom* = 2
  htmlCaptionVAlign_Max* = 2147483647
enum htmlCaptionVAlign : int {
    htmlCaptionVAlignNotSet = 0,
    htmlCaptionVAlignTop = 1,
    htmlCaptionVAlignBottom = 2,
    htmlCaptionVAlign_Max = 2147483647,
}
#define global htmlCaptionVAlignNotSet 0x0
#define global htmlCaptionVAlignTop    0x1
#define global htmlCaptionVAlignBottom 0x2
#define global htmlCaptionVAlign_Max   0x7FFFFFFF