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

styleRubyOverhang

列挙型
基底型i4

メンバー 5

名前10進16進
styleRubyOverhangNotSet00x0
styleRubyOverhangAuto10x1
styleRubyOverhangWhitespace20x2
styleRubyOverhangNone30x3
styleRubyOverhang_Max21474836470x7FFFFFFF

各言語での定義

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

typedef enum styleRubyOverhang : int {
    styleRubyOverhangNotSet = 0,
    styleRubyOverhangAuto = 1,
    styleRubyOverhangWhitespace = 2,
    styleRubyOverhangNone = 3,
    styleRubyOverhang_Max = 2147483647
} styleRubyOverhang;
public enum styleRubyOverhang : int
{
    styleRubyOverhangNotSet = 0,
    styleRubyOverhangAuto = 1,
    styleRubyOverhangWhitespace = 2,
    styleRubyOverhangNone = 3,
    styleRubyOverhang_Max = 2147483647,
}
Public Enum styleRubyOverhang As Integer
    styleRubyOverhangNotSet = 0
    styleRubyOverhangAuto = 1
    styleRubyOverhangWhitespace = 2
    styleRubyOverhangNone = 3
    styleRubyOverhang_Max = 2147483647
End Enum
import enum

class styleRubyOverhang(enum.IntEnum):
    styleRubyOverhangNotSet = 0
    styleRubyOverhangAuto = 1
    styleRubyOverhangWhitespace = 2
    styleRubyOverhangNone = 3
    styleRubyOverhang_Max = 2147483647
// styleRubyOverhang
pub const styleRubyOverhangNotSet: i32 = 0;
pub const styleRubyOverhangAuto: i32 = 1;
pub const styleRubyOverhangWhitespace: i32 = 2;
pub const styleRubyOverhangNone: i32 = 3;
pub const styleRubyOverhang_Max: i32 = 2147483647;
// styleRubyOverhang
const (
	styleRubyOverhangNotSet int32 = 0
	styleRubyOverhangAuto int32 = 1
	styleRubyOverhangWhitespace int32 = 2
	styleRubyOverhangNone int32 = 3
	styleRubyOverhang_Max int32 = 2147483647
)
const
  styleRubyOverhangNotSet = 0;
  styleRubyOverhangAuto = 1;
  styleRubyOverhangWhitespace = 2;
  styleRubyOverhangNone = 3;
  styleRubyOverhang_Max = 2147483647;
// styleRubyOverhang
pub const styleRubyOverhangNotSet: i32 = 0;
pub const styleRubyOverhangAuto: i32 = 1;
pub const styleRubyOverhangWhitespace: i32 = 2;
pub const styleRubyOverhangNone: i32 = 3;
pub const styleRubyOverhang_Max: i32 = 2147483647;
const
  styleRubyOverhangNotSet* = 0
  styleRubyOverhangAuto* = 1
  styleRubyOverhangWhitespace* = 2
  styleRubyOverhangNone* = 3
  styleRubyOverhang_Max* = 2147483647
enum styleRubyOverhang : int {
    styleRubyOverhangNotSet = 0,
    styleRubyOverhangAuto = 1,
    styleRubyOverhangWhitespace = 2,
    styleRubyOverhangNone = 3,
    styleRubyOverhang_Max = 2147483647,
}
#define global styleRubyOverhangNotSet     0x0
#define global styleRubyOverhangAuto       0x1
#define global styleRubyOverhangWhitespace 0x2
#define global styleRubyOverhangNone       0x3
#define global styleRubyOverhang_Max       0x7FFFFFFF