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

UCalendarDisplayNameType

列挙型
基底型i4

メンバー 4

名前10進16進
UCAL_STANDARD00x0
UCAL_SHORT_STANDARD10x1
UCAL_DST20x2
UCAL_SHORT_DST30x3

各言語での定義

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

typedef enum UCalendarDisplayNameType : int {
    UCAL_STANDARD = 0,
    UCAL_SHORT_STANDARD = 1,
    UCAL_DST = 2,
    UCAL_SHORT_DST = 3
} UCalendarDisplayNameType;
public enum UCalendarDisplayNameType : int
{
    UCAL_STANDARD = 0,
    UCAL_SHORT_STANDARD = 1,
    UCAL_DST = 2,
    UCAL_SHORT_DST = 3,
}
Public Enum UCalendarDisplayNameType As Integer
    UCAL_STANDARD = 0
    UCAL_SHORT_STANDARD = 1
    UCAL_DST = 2
    UCAL_SHORT_DST = 3
End Enum
import enum

class UCalendarDisplayNameType(enum.IntEnum):
    UCAL_STANDARD = 0
    UCAL_SHORT_STANDARD = 1
    UCAL_DST = 2
    UCAL_SHORT_DST = 3
// UCalendarDisplayNameType
pub const UCAL_STANDARD: i32 = 0;
pub const UCAL_SHORT_STANDARD: i32 = 1;
pub const UCAL_DST: i32 = 2;
pub const UCAL_SHORT_DST: i32 = 3;
// UCalendarDisplayNameType
const (
	UCAL_STANDARD int32 = 0
	UCAL_SHORT_STANDARD int32 = 1
	UCAL_DST int32 = 2
	UCAL_SHORT_DST int32 = 3
)
const
  UCAL_STANDARD = 0;
  UCAL_SHORT_STANDARD = 1;
  UCAL_DST = 2;
  UCAL_SHORT_DST = 3;
// UCalendarDisplayNameType
pub const UCAL_STANDARD: i32 = 0;
pub const UCAL_SHORT_STANDARD: i32 = 1;
pub const UCAL_DST: i32 = 2;
pub const UCAL_SHORT_DST: i32 = 3;
const
  UCAL_STANDARD* = 0
  UCAL_SHORT_STANDARD* = 1
  UCAL_DST* = 2
  UCAL_SHORT_DST* = 3
enum UCalendarDisplayNameType : int {
    UCAL_STANDARD = 0,
    UCAL_SHORT_STANDARD = 1,
    UCAL_DST = 2,
    UCAL_SHORT_DST = 3,
}
#define global UCAL_STANDARD       0x0
#define global UCAL_SHORT_STANDARD 0x1
#define global UCAL_DST            0x2
#define global UCAL_SHORT_DST      0x3