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

UNumberSignDisplay

列挙型
基底型i4

メンバー 10

名前10進16進
UNUM_SIGN_AUTO00x0
UNUM_SIGN_ALWAYS10x1
UNUM_SIGN_NEVER20x2
UNUM_SIGN_ACCOUNTING30x3
UNUM_SIGN_ACCOUNTING_ALWAYS40x4
UNUM_SIGN_EXCEPT_ZERO50x5
UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO60x6
UNUM_SIGN_NEGATIVE70x7
UNUM_SIGN_ACCOUNTING_NEGATIVE80x8
UNUM_SIGN_COUNT90x9

各言語での定義

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

typedef enum UNumberSignDisplay : int {
    UNUM_SIGN_AUTO = 0,
    UNUM_SIGN_ALWAYS = 1,
    UNUM_SIGN_NEVER = 2,
    UNUM_SIGN_ACCOUNTING = 3,
    UNUM_SIGN_ACCOUNTING_ALWAYS = 4,
    UNUM_SIGN_EXCEPT_ZERO = 5,
    UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO = 6,
    UNUM_SIGN_NEGATIVE = 7,
    UNUM_SIGN_ACCOUNTING_NEGATIVE = 8,
    UNUM_SIGN_COUNT = 9
} UNumberSignDisplay;
public enum UNumberSignDisplay : int
{
    UNUM_SIGN_AUTO = 0,
    UNUM_SIGN_ALWAYS = 1,
    UNUM_SIGN_NEVER = 2,
    UNUM_SIGN_ACCOUNTING = 3,
    UNUM_SIGN_ACCOUNTING_ALWAYS = 4,
    UNUM_SIGN_EXCEPT_ZERO = 5,
    UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO = 6,
    UNUM_SIGN_NEGATIVE = 7,
    UNUM_SIGN_ACCOUNTING_NEGATIVE = 8,
    UNUM_SIGN_COUNT = 9,
}
Public Enum UNumberSignDisplay As Integer
    UNUM_SIGN_AUTO = 0
    UNUM_SIGN_ALWAYS = 1
    UNUM_SIGN_NEVER = 2
    UNUM_SIGN_ACCOUNTING = 3
    UNUM_SIGN_ACCOUNTING_ALWAYS = 4
    UNUM_SIGN_EXCEPT_ZERO = 5
    UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO = 6
    UNUM_SIGN_NEGATIVE = 7
    UNUM_SIGN_ACCOUNTING_NEGATIVE = 8
    UNUM_SIGN_COUNT = 9
End Enum
import enum

class UNumberSignDisplay(enum.IntEnum):
    UNUM_SIGN_AUTO = 0
    UNUM_SIGN_ALWAYS = 1
    UNUM_SIGN_NEVER = 2
    UNUM_SIGN_ACCOUNTING = 3
    UNUM_SIGN_ACCOUNTING_ALWAYS = 4
    UNUM_SIGN_EXCEPT_ZERO = 5
    UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO = 6
    UNUM_SIGN_NEGATIVE = 7
    UNUM_SIGN_ACCOUNTING_NEGATIVE = 8
    UNUM_SIGN_COUNT = 9
// UNumberSignDisplay
pub const UNUM_SIGN_AUTO: i32 = 0;
pub const UNUM_SIGN_ALWAYS: i32 = 1;
pub const UNUM_SIGN_NEVER: i32 = 2;
pub const UNUM_SIGN_ACCOUNTING: i32 = 3;
pub const UNUM_SIGN_ACCOUNTING_ALWAYS: i32 = 4;
pub const UNUM_SIGN_EXCEPT_ZERO: i32 = 5;
pub const UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO: i32 = 6;
pub const UNUM_SIGN_NEGATIVE: i32 = 7;
pub const UNUM_SIGN_ACCOUNTING_NEGATIVE: i32 = 8;
pub const UNUM_SIGN_COUNT: i32 = 9;
// UNumberSignDisplay
const (
	UNUM_SIGN_AUTO int32 = 0
	UNUM_SIGN_ALWAYS int32 = 1
	UNUM_SIGN_NEVER int32 = 2
	UNUM_SIGN_ACCOUNTING int32 = 3
	UNUM_SIGN_ACCOUNTING_ALWAYS int32 = 4
	UNUM_SIGN_EXCEPT_ZERO int32 = 5
	UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO int32 = 6
	UNUM_SIGN_NEGATIVE int32 = 7
	UNUM_SIGN_ACCOUNTING_NEGATIVE int32 = 8
	UNUM_SIGN_COUNT int32 = 9
)
const
  UNUM_SIGN_AUTO = 0;
  UNUM_SIGN_ALWAYS = 1;
  UNUM_SIGN_NEVER = 2;
  UNUM_SIGN_ACCOUNTING = 3;
  UNUM_SIGN_ACCOUNTING_ALWAYS = 4;
  UNUM_SIGN_EXCEPT_ZERO = 5;
  UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO = 6;
  UNUM_SIGN_NEGATIVE = 7;
  UNUM_SIGN_ACCOUNTING_NEGATIVE = 8;
  UNUM_SIGN_COUNT = 9;
// UNumberSignDisplay
pub const UNUM_SIGN_AUTO: i32 = 0;
pub const UNUM_SIGN_ALWAYS: i32 = 1;
pub const UNUM_SIGN_NEVER: i32 = 2;
pub const UNUM_SIGN_ACCOUNTING: i32 = 3;
pub const UNUM_SIGN_ACCOUNTING_ALWAYS: i32 = 4;
pub const UNUM_SIGN_EXCEPT_ZERO: i32 = 5;
pub const UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO: i32 = 6;
pub const UNUM_SIGN_NEGATIVE: i32 = 7;
pub const UNUM_SIGN_ACCOUNTING_NEGATIVE: i32 = 8;
pub const UNUM_SIGN_COUNT: i32 = 9;
const
  UNUM_SIGN_AUTO* = 0
  UNUM_SIGN_ALWAYS* = 1
  UNUM_SIGN_NEVER* = 2
  UNUM_SIGN_ACCOUNTING* = 3
  UNUM_SIGN_ACCOUNTING_ALWAYS* = 4
  UNUM_SIGN_EXCEPT_ZERO* = 5
  UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO* = 6
  UNUM_SIGN_NEGATIVE* = 7
  UNUM_SIGN_ACCOUNTING_NEGATIVE* = 8
  UNUM_SIGN_COUNT* = 9
enum UNumberSignDisplay : int {
    UNUM_SIGN_AUTO = 0,
    UNUM_SIGN_ALWAYS = 1,
    UNUM_SIGN_NEVER = 2,
    UNUM_SIGN_ACCOUNTING = 3,
    UNUM_SIGN_ACCOUNTING_ALWAYS = 4,
    UNUM_SIGN_EXCEPT_ZERO = 5,
    UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO = 6,
    UNUM_SIGN_NEGATIVE = 7,
    UNUM_SIGN_ACCOUNTING_NEGATIVE = 8,
    UNUM_SIGN_COUNT = 9,
}
#define global UNUM_SIGN_AUTO                   0x0
#define global UNUM_SIGN_ALWAYS                 0x1
#define global UNUM_SIGN_NEVER                  0x2
#define global UNUM_SIGN_ACCOUNTING             0x3
#define global UNUM_SIGN_ACCOUNTING_ALWAYS      0x4
#define global UNUM_SIGN_EXCEPT_ZERO            0x5
#define global UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO 0x6
#define global UNUM_SIGN_NEGATIVE               0x7
#define global UNUM_SIGN_ACCOUNTING_NEGATIVE    0x8
#define global UNUM_SIGN_COUNT                  0x9