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

styleRubyPosition

列挙型
基底型i4

メンバー 4

名前10進16進
styleRubyPositionNotSet00x0
styleRubyPositionAbove10x1
styleRubyPositionInline20x2
styleRubyPosition_Max21474836470x7FFFFFFF

各言語での定義

列挙メンバーの定義。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 Enum
import 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* = 2147483647
enum 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