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

htmlCellAlign

列挙型
基底型i4

メンバー 6

名前10進16進
htmlCellAlignNotSet00x0
htmlCellAlignLeft10x1
htmlCellAlignCenter20x2
htmlCellAlignRight30x3
htmlCellAlignMiddle20x2
htmlCellAlign_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum htmlCellAlign : int {
    htmlCellAlignNotSet = 0,
    htmlCellAlignLeft = 1,
    htmlCellAlignCenter = 2,
    htmlCellAlignRight = 3,
    htmlCellAlignMiddle = 2,
    htmlCellAlign_Max = 2147483647
} htmlCellAlign;
public enum htmlCellAlign : int
{
    htmlCellAlignNotSet = 0,
    htmlCellAlignLeft = 1,
    htmlCellAlignCenter = 2,
    htmlCellAlignRight = 3,
    htmlCellAlignMiddle = 2,
    htmlCellAlign_Max = 2147483647,
}
Public Enum htmlCellAlign As Integer
    htmlCellAlignNotSet = 0
    htmlCellAlignLeft = 1
    htmlCellAlignCenter = 2
    htmlCellAlignRight = 3
    htmlCellAlignMiddle = 2
    htmlCellAlign_Max = 2147483647
End Enum
import enum

class htmlCellAlign(enum.IntEnum):
    htmlCellAlignNotSet = 0
    htmlCellAlignLeft = 1
    htmlCellAlignCenter = 2
    htmlCellAlignRight = 3
    htmlCellAlignMiddle = 2
    htmlCellAlign_Max = 2147483647
// htmlCellAlign
pub const htmlCellAlignNotSet: i32 = 0;
pub const htmlCellAlignLeft: i32 = 1;
pub const htmlCellAlignCenter: i32 = 2;
pub const htmlCellAlignRight: i32 = 3;
pub const htmlCellAlignMiddle: i32 = 2;
pub const htmlCellAlign_Max: i32 = 2147483647;
// htmlCellAlign
const (
	htmlCellAlignNotSet int32 = 0
	htmlCellAlignLeft int32 = 1
	htmlCellAlignCenter int32 = 2
	htmlCellAlignRight int32 = 3
	htmlCellAlignMiddle int32 = 2
	htmlCellAlign_Max int32 = 2147483647
)
const
  htmlCellAlignNotSet = 0;
  htmlCellAlignLeft = 1;
  htmlCellAlignCenter = 2;
  htmlCellAlignRight = 3;
  htmlCellAlignMiddle = 2;
  htmlCellAlign_Max = 2147483647;
// htmlCellAlign
pub const htmlCellAlignNotSet: i32 = 0;
pub const htmlCellAlignLeft: i32 = 1;
pub const htmlCellAlignCenter: i32 = 2;
pub const htmlCellAlignRight: i32 = 3;
pub const htmlCellAlignMiddle: i32 = 2;
pub const htmlCellAlign_Max: i32 = 2147483647;
const
  htmlCellAlignNotSet* = 0
  htmlCellAlignLeft* = 1
  htmlCellAlignCenter* = 2
  htmlCellAlignRight* = 3
  htmlCellAlignMiddle* = 2
  htmlCellAlign_Max* = 2147483647
enum htmlCellAlign : int {
    htmlCellAlignNotSet = 0,
    htmlCellAlignLeft = 1,
    htmlCellAlignCenter = 2,
    htmlCellAlignRight = 3,
    htmlCellAlignMiddle = 2,
    htmlCellAlign_Max = 2147483647,
}
#define global htmlCellAlignNotSet 0x0
#define global htmlCellAlignLeft   0x1
#define global htmlCellAlignCenter 0x2
#define global htmlCellAlignRight  0x3
#define global htmlCellAlignMiddle 0x2
#define global htmlCellAlign_Max   0x7FFFFFFF