ホーム › Globalization › UNumberSignDisplay
UNumberSignDisplay
列挙型メンバー 10
| 名前 | 10進 | 16進 |
|---|---|---|
| UNUM_SIGN_AUTO | 0 | 0x0 |
| UNUM_SIGN_ALWAYS | 1 | 0x1 |
| UNUM_SIGN_NEVER | 2 | 0x2 |
| UNUM_SIGN_ACCOUNTING | 3 | 0x3 |
| UNUM_SIGN_ACCOUNTING_ALWAYS | 4 | 0x4 |
| UNUM_SIGN_EXCEPT_ZERO | 5 | 0x5 |
| UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO | 6 | 0x6 |
| UNUM_SIGN_NEGATIVE | 7 | 0x7 |
| UNUM_SIGN_ACCOUNTING_NEGATIVE | 8 | 0x8 |
| UNUM_SIGN_COUNT | 9 | 0x9 |
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 9enum 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