ホーム › Web.MsHtml › styleRubyPosition
styleRubyPosition
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| styleRubyPositionNotSet | 0 | 0x0 |
| styleRubyPositionAbove | 1 | 0x1 |
| styleRubyPositionInline | 2 | 0x2 |
| styleRubyPosition_Max | 2147483647 | 0x7FFFFFFF |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum styleRubyPosition : int {
styleRubyPositionNotSet = 0,
styleRubyPositionAbove = 1,
styleRubyPositionInline = 2,
styleRubyPosition_Max = 2147483647
} styleRubyPosition;public enum styleRubyPosition : int
{
styleRubyPositionNotSet = 0,
styleRubyPositionAbove = 1,
styleRubyPositionInline = 2,
styleRubyPosition_Max = 2147483647,
}Public Enum styleRubyPosition As Integer
styleRubyPositionNotSet = 0
styleRubyPositionAbove = 1
styleRubyPositionInline = 2
styleRubyPosition_Max = 2147483647
End Enumimport enum
class styleRubyPosition(enum.IntEnum):
styleRubyPositionNotSet = 0
styleRubyPositionAbove = 1
styleRubyPositionInline = 2
styleRubyPosition_Max = 2147483647// styleRubyPosition
pub const styleRubyPositionNotSet: i32 = 0;
pub const styleRubyPositionAbove: i32 = 1;
pub const styleRubyPositionInline: i32 = 2;
pub const styleRubyPosition_Max: i32 = 2147483647;// styleRubyPosition
const (
styleRubyPositionNotSet int32 = 0
styleRubyPositionAbove int32 = 1
styleRubyPositionInline int32 = 2
styleRubyPosition_Max int32 = 2147483647
)const
styleRubyPositionNotSet = 0;
styleRubyPositionAbove = 1;
styleRubyPositionInline = 2;
styleRubyPosition_Max = 2147483647;// styleRubyPosition
pub const styleRubyPositionNotSet: i32 = 0;
pub const styleRubyPositionAbove: i32 = 1;
pub const styleRubyPositionInline: i32 = 2;
pub const styleRubyPosition_Max: i32 = 2147483647;const
styleRubyPositionNotSet* = 0
styleRubyPositionAbove* = 1
styleRubyPositionInline* = 2
styleRubyPosition_Max* = 2147483647enum styleRubyPosition : int {
styleRubyPositionNotSet = 0,
styleRubyPositionAbove = 1,
styleRubyPositionInline = 2,
styleRubyPosition_Max = 2147483647,
}#define global styleRubyPositionNotSet 0x0
#define global styleRubyPositionAbove 0x1
#define global styleRubyPositionInline 0x2
#define global styleRubyPosition_Max 0x7FFFFFFF