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

styleTextAnchor

列挙型
基底型i4

メンバー 5

名前10進16進
styleTextAnchorNotSet00x0
styleTextAnchorStart10x1
styleTextAnchorMiddle20x2
styleTextAnchorEnd30x3
styleTextAnchor_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleTextAnchor : int {
    styleTextAnchorNotSet = 0,
    styleTextAnchorStart = 1,
    styleTextAnchorMiddle = 2,
    styleTextAnchorEnd = 3,
    styleTextAnchor_Max = 2147483647
} styleTextAnchor;
public enum styleTextAnchor : int
{
    styleTextAnchorNotSet = 0,
    styleTextAnchorStart = 1,
    styleTextAnchorMiddle = 2,
    styleTextAnchorEnd = 3,
    styleTextAnchor_Max = 2147483647,
}
Public Enum styleTextAnchor As Integer
    styleTextAnchorNotSet = 0
    styleTextAnchorStart = 1
    styleTextAnchorMiddle = 2
    styleTextAnchorEnd = 3
    styleTextAnchor_Max = 2147483647
End Enum
import enum

class styleTextAnchor(enum.IntEnum):
    styleTextAnchorNotSet = 0
    styleTextAnchorStart = 1
    styleTextAnchorMiddle = 2
    styleTextAnchorEnd = 3
    styleTextAnchor_Max = 2147483647
// styleTextAnchor
pub const styleTextAnchorNotSet: i32 = 0;
pub const styleTextAnchorStart: i32 = 1;
pub const styleTextAnchorMiddle: i32 = 2;
pub const styleTextAnchorEnd: i32 = 3;
pub const styleTextAnchor_Max: i32 = 2147483647;
// styleTextAnchor
const (
	styleTextAnchorNotSet int32 = 0
	styleTextAnchorStart int32 = 1
	styleTextAnchorMiddle int32 = 2
	styleTextAnchorEnd int32 = 3
	styleTextAnchor_Max int32 = 2147483647
)
const
  styleTextAnchorNotSet = 0;
  styleTextAnchorStart = 1;
  styleTextAnchorMiddle = 2;
  styleTextAnchorEnd = 3;
  styleTextAnchor_Max = 2147483647;
// styleTextAnchor
pub const styleTextAnchorNotSet: i32 = 0;
pub const styleTextAnchorStart: i32 = 1;
pub const styleTextAnchorMiddle: i32 = 2;
pub const styleTextAnchorEnd: i32 = 3;
pub const styleTextAnchor_Max: i32 = 2147483647;
const
  styleTextAnchorNotSet* = 0
  styleTextAnchorStart* = 1
  styleTextAnchorMiddle* = 2
  styleTextAnchorEnd* = 3
  styleTextAnchor_Max* = 2147483647
enum styleTextAnchor : int {
    styleTextAnchorNotSet = 0,
    styleTextAnchorStart = 1,
    styleTextAnchorMiddle = 2,
    styleTextAnchorEnd = 3,
    styleTextAnchor_Max = 2147483647,
}
#define global styleTextAnchorNotSet 0x0
#define global styleTextAnchorStart  0x1
#define global styleTextAnchorMiddle 0x2
#define global styleTextAnchorEnd    0x3
#define global styleTextAnchor_Max   0x7FFFFFFF