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

UColRuleOption

列挙型
基底型i4

メンバー 2

名前10進16進
UCOL_TAILORING_ONLY00x0
UCOL_FULL_RULES10x1

各言語での定義

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

typedef enum UColRuleOption : int {
    UCOL_TAILORING_ONLY = 0,
    UCOL_FULL_RULES = 1
} UColRuleOption;
public enum UColRuleOption : int
{
    UCOL_TAILORING_ONLY = 0,
    UCOL_FULL_RULES = 1,
}
Public Enum UColRuleOption As Integer
    UCOL_TAILORING_ONLY = 0
    UCOL_FULL_RULES = 1
End Enum
import enum

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