Win32 API 日本語リファレンス
ホームGlobalization › UNumberCompactStyle

UNumberCompactStyle

列挙型
基底型i4

メンバー 2

名前10進16進
UNUM_SHORT00x0
UNUM_LONG10x1

各言語での定義

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

typedef enum UNumberCompactStyle : int {
    UNUM_SHORT = 0,
    UNUM_LONG = 1
} UNumberCompactStyle;
public enum UNumberCompactStyle : int
{
    UNUM_SHORT = 0,
    UNUM_LONG = 1,
}
Public Enum UNumberCompactStyle As Integer
    UNUM_SHORT = 0
    UNUM_LONG = 1
End Enum
import enum

class UNumberCompactStyle(enum.IntEnum):
    UNUM_SHORT = 0
    UNUM_LONG = 1
// UNumberCompactStyle
pub const UNUM_SHORT: i32 = 0;
pub const UNUM_LONG: i32 = 1;
// UNumberCompactStyle
const (
	UNUM_SHORT int32 = 0
	UNUM_LONG int32 = 1
)
const
  UNUM_SHORT = 0;
  UNUM_LONG = 1;
// UNumberCompactStyle
pub const UNUM_SHORT: i32 = 0;
pub const UNUM_LONG: i32 = 1;
const
  UNUM_SHORT* = 0
  UNUM_LONG* = 1
enum UNumberCompactStyle : int {
    UNUM_SHORT = 0,
    UNUM_LONG = 1,
}
#define global UNUM_SHORT 0x0
#define global UNUM_LONG  0x1