Win32 API 日本語リファレンス
ホームUI.TabletPC › SelAlignmentConstants

SelAlignmentConstants

列挙型
基底型i4

メンバー 3

名前10進16進
rtfLeft00x0
rtfRight10x1
rtfCenter20x2

各言語での定義

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

typedef enum SelAlignmentConstants : int {
    rtfLeft = 0,
    rtfRight = 1,
    rtfCenter = 2
} SelAlignmentConstants;
public enum SelAlignmentConstants : int
{
    rtfLeft = 0,
    rtfRight = 1,
    rtfCenter = 2,
}
Public Enum SelAlignmentConstants As Integer
    rtfLeft = 0
    rtfRight = 1
    rtfCenter = 2
End Enum
import enum

class SelAlignmentConstants(enum.IntEnum):
    rtfLeft = 0
    rtfRight = 1
    rtfCenter = 2
// SelAlignmentConstants
pub const rtfLeft: i32 = 0;
pub const rtfRight: i32 = 1;
pub const rtfCenter: i32 = 2;
// SelAlignmentConstants
const (
	rtfLeft int32 = 0
	rtfRight int32 = 1
	rtfCenter int32 = 2
)
const
  rtfLeft = 0;
  rtfRight = 1;
  rtfCenter = 2;
// SelAlignmentConstants
pub const rtfLeft: i32 = 0;
pub const rtfRight: i32 = 1;
pub const rtfCenter: i32 = 2;
const
  rtfLeft* = 0
  rtfRight* = 1
  rtfCenter* = 2
enum SelAlignmentConstants : int {
    rtfLeft = 0,
    rtfRight = 1,
    rtfCenter = 2,
}
#define global rtfLeft   0x0
#define global rtfRight  0x1
#define global rtfCenter 0x2