ホーム › Web.MsHtml › styleTextAnchor
styleTextAnchor
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| styleTextAnchorNotSet | 0 | 0x0 |
| styleTextAnchorStart | 1 | 0x1 |
| styleTextAnchorMiddle | 2 | 0x2 |
| styleTextAnchorEnd | 3 | 0x3 |
| styleTextAnchor_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 2147483647enum 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