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

htmlCaptionAlign

列挙型
基底型i4

メンバー 8

名前10進16進
htmlCaptionAlignNotSet00x0
htmlCaptionAlignLeft10x1
htmlCaptionAlignCenter20x2
htmlCaptionAlignRight30x3
htmlCaptionAlignJustify40x4
htmlCaptionAlignTop50x5
htmlCaptionAlignBottom60x6
htmlCaptionAlign_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum htmlCaptionAlign : int {
    htmlCaptionAlignNotSet = 0,
    htmlCaptionAlignLeft = 1,
    htmlCaptionAlignCenter = 2,
    htmlCaptionAlignRight = 3,
    htmlCaptionAlignJustify = 4,
    htmlCaptionAlignTop = 5,
    htmlCaptionAlignBottom = 6,
    htmlCaptionAlign_Max = 2147483647
} htmlCaptionAlign;
public enum htmlCaptionAlign : int
{
    htmlCaptionAlignNotSet = 0,
    htmlCaptionAlignLeft = 1,
    htmlCaptionAlignCenter = 2,
    htmlCaptionAlignRight = 3,
    htmlCaptionAlignJustify = 4,
    htmlCaptionAlignTop = 5,
    htmlCaptionAlignBottom = 6,
    htmlCaptionAlign_Max = 2147483647,
}
Public Enum htmlCaptionAlign As Integer
    htmlCaptionAlignNotSet = 0
    htmlCaptionAlignLeft = 1
    htmlCaptionAlignCenter = 2
    htmlCaptionAlignRight = 3
    htmlCaptionAlignJustify = 4
    htmlCaptionAlignTop = 5
    htmlCaptionAlignBottom = 6
    htmlCaptionAlign_Max = 2147483647
End Enum
import enum

class htmlCaptionAlign(enum.IntEnum):
    htmlCaptionAlignNotSet = 0
    htmlCaptionAlignLeft = 1
    htmlCaptionAlignCenter = 2
    htmlCaptionAlignRight = 3
    htmlCaptionAlignJustify = 4
    htmlCaptionAlignTop = 5
    htmlCaptionAlignBottom = 6
    htmlCaptionAlign_Max = 2147483647
// htmlCaptionAlign
pub const htmlCaptionAlignNotSet: i32 = 0;
pub const htmlCaptionAlignLeft: i32 = 1;
pub const htmlCaptionAlignCenter: i32 = 2;
pub const htmlCaptionAlignRight: i32 = 3;
pub const htmlCaptionAlignJustify: i32 = 4;
pub const htmlCaptionAlignTop: i32 = 5;
pub const htmlCaptionAlignBottom: i32 = 6;
pub const htmlCaptionAlign_Max: i32 = 2147483647;
// htmlCaptionAlign
const (
	htmlCaptionAlignNotSet int32 = 0
	htmlCaptionAlignLeft int32 = 1
	htmlCaptionAlignCenter int32 = 2
	htmlCaptionAlignRight int32 = 3
	htmlCaptionAlignJustify int32 = 4
	htmlCaptionAlignTop int32 = 5
	htmlCaptionAlignBottom int32 = 6
	htmlCaptionAlign_Max int32 = 2147483647
)
const
  htmlCaptionAlignNotSet = 0;
  htmlCaptionAlignLeft = 1;
  htmlCaptionAlignCenter = 2;
  htmlCaptionAlignRight = 3;
  htmlCaptionAlignJustify = 4;
  htmlCaptionAlignTop = 5;
  htmlCaptionAlignBottom = 6;
  htmlCaptionAlign_Max = 2147483647;
// htmlCaptionAlign
pub const htmlCaptionAlignNotSet: i32 = 0;
pub const htmlCaptionAlignLeft: i32 = 1;
pub const htmlCaptionAlignCenter: i32 = 2;
pub const htmlCaptionAlignRight: i32 = 3;
pub const htmlCaptionAlignJustify: i32 = 4;
pub const htmlCaptionAlignTop: i32 = 5;
pub const htmlCaptionAlignBottom: i32 = 6;
pub const htmlCaptionAlign_Max: i32 = 2147483647;
const
  htmlCaptionAlignNotSet* = 0
  htmlCaptionAlignLeft* = 1
  htmlCaptionAlignCenter* = 2
  htmlCaptionAlignRight* = 3
  htmlCaptionAlignJustify* = 4
  htmlCaptionAlignTop* = 5
  htmlCaptionAlignBottom* = 6
  htmlCaptionAlign_Max* = 2147483647
enum htmlCaptionAlign : int {
    htmlCaptionAlignNotSet = 0,
    htmlCaptionAlignLeft = 1,
    htmlCaptionAlignCenter = 2,
    htmlCaptionAlignRight = 3,
    htmlCaptionAlignJustify = 4,
    htmlCaptionAlignTop = 5,
    htmlCaptionAlignBottom = 6,
    htmlCaptionAlign_Max = 2147483647,
}
#define global htmlCaptionAlignNotSet  0x0
#define global htmlCaptionAlignLeft    0x1
#define global htmlCaptionAlignCenter  0x2
#define global htmlCaptionAlignRight   0x3
#define global htmlCaptionAlignJustify 0x4
#define global htmlCaptionAlignTop     0x5
#define global htmlCaptionAlignBottom  0x6
#define global htmlCaptionAlign_Max    0x7FFFFFFF