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

htmlBlockAlign

列挙型
基底型i4

メンバー 6

名前10進16進
htmlBlockAlignNotSet00x0
htmlBlockAlignLeft10x1
htmlBlockAlignCenter20x2
htmlBlockAlignRight30x3
htmlBlockAlignJustify40x4
htmlBlockAlign_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum htmlBlockAlign : int {
    htmlBlockAlignNotSet = 0,
    htmlBlockAlignLeft = 1,
    htmlBlockAlignCenter = 2,
    htmlBlockAlignRight = 3,
    htmlBlockAlignJustify = 4,
    htmlBlockAlign_Max = 2147483647
} htmlBlockAlign;
public enum htmlBlockAlign : int
{
    htmlBlockAlignNotSet = 0,
    htmlBlockAlignLeft = 1,
    htmlBlockAlignCenter = 2,
    htmlBlockAlignRight = 3,
    htmlBlockAlignJustify = 4,
    htmlBlockAlign_Max = 2147483647,
}
Public Enum htmlBlockAlign As Integer
    htmlBlockAlignNotSet = 0
    htmlBlockAlignLeft = 1
    htmlBlockAlignCenter = 2
    htmlBlockAlignRight = 3
    htmlBlockAlignJustify = 4
    htmlBlockAlign_Max = 2147483647
End Enum
import enum

class htmlBlockAlign(enum.IntEnum):
    htmlBlockAlignNotSet = 0
    htmlBlockAlignLeft = 1
    htmlBlockAlignCenter = 2
    htmlBlockAlignRight = 3
    htmlBlockAlignJustify = 4
    htmlBlockAlign_Max = 2147483647
// htmlBlockAlign
pub const htmlBlockAlignNotSet: i32 = 0;
pub const htmlBlockAlignLeft: i32 = 1;
pub const htmlBlockAlignCenter: i32 = 2;
pub const htmlBlockAlignRight: i32 = 3;
pub const htmlBlockAlignJustify: i32 = 4;
pub const htmlBlockAlign_Max: i32 = 2147483647;
// htmlBlockAlign
const (
	htmlBlockAlignNotSet int32 = 0
	htmlBlockAlignLeft int32 = 1
	htmlBlockAlignCenter int32 = 2
	htmlBlockAlignRight int32 = 3
	htmlBlockAlignJustify int32 = 4
	htmlBlockAlign_Max int32 = 2147483647
)
const
  htmlBlockAlignNotSet = 0;
  htmlBlockAlignLeft = 1;
  htmlBlockAlignCenter = 2;
  htmlBlockAlignRight = 3;
  htmlBlockAlignJustify = 4;
  htmlBlockAlign_Max = 2147483647;
// htmlBlockAlign
pub const htmlBlockAlignNotSet: i32 = 0;
pub const htmlBlockAlignLeft: i32 = 1;
pub const htmlBlockAlignCenter: i32 = 2;
pub const htmlBlockAlignRight: i32 = 3;
pub const htmlBlockAlignJustify: i32 = 4;
pub const htmlBlockAlign_Max: i32 = 2147483647;
const
  htmlBlockAlignNotSet* = 0
  htmlBlockAlignLeft* = 1
  htmlBlockAlignCenter* = 2
  htmlBlockAlignRight* = 3
  htmlBlockAlignJustify* = 4
  htmlBlockAlign_Max* = 2147483647
enum htmlBlockAlign : int {
    htmlBlockAlignNotSet = 0,
    htmlBlockAlignLeft = 1,
    htmlBlockAlignCenter = 2,
    htmlBlockAlignRight = 3,
    htmlBlockAlignJustify = 4,
    htmlBlockAlign_Max = 2147483647,
}
#define global htmlBlockAlignNotSet  0x0
#define global htmlBlockAlignLeft    0x1
#define global htmlBlockAlignCenter  0x2
#define global htmlBlockAlignRight   0x3
#define global htmlBlockAlignJustify 0x4
#define global htmlBlockAlign_Max    0x7FFFFFFF