Win32 API 日本語リファレンス
ホームUI.Accessibility › SayAsInterpretAs

SayAsInterpretAs

列挙型
基底型i4

メンバー 27

名前10進16進
SayAsInterpretAs_None00x0
SayAsInterpretAs_Spell10x1
SayAsInterpretAs_Cardinal20x2
SayAsInterpretAs_Ordinal30x3
SayAsInterpretAs_Number40x4
SayAsInterpretAs_Date50x5
SayAsInterpretAs_Time60x6
SayAsInterpretAs_Telephone70x7
SayAsInterpretAs_Currency80x8
SayAsInterpretAs_Net90x9
SayAsInterpretAs_Url100xA
SayAsInterpretAs_Address110xB
SayAsInterpretAs_Alphanumeric120xC
SayAsInterpretAs_Name130xD
SayAsInterpretAs_Media140xE
SayAsInterpretAs_Date_MonthDayYear150xF
SayAsInterpretAs_Date_DayMonthYear160x10
SayAsInterpretAs_Date_YearMonthDay170x11
SayAsInterpretAs_Date_YearMonth180x12
SayAsInterpretAs_Date_MonthYear190x13
SayAsInterpretAs_Date_DayMonth200x14
SayAsInterpretAs_Date_MonthDay210x15
SayAsInterpretAs_Date_Year220x16
SayAsInterpretAs_Time_HoursMinutesSeconds12230x17
SayAsInterpretAs_Time_HoursMinutes12240x18
SayAsInterpretAs_Time_HoursMinutesSeconds24250x19
SayAsInterpretAs_Time_HoursMinutes24260x1A

各言語での定義

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

typedef enum SayAsInterpretAs : int {
    SayAsInterpretAs_None = 0,
    SayAsInterpretAs_Spell = 1,
    SayAsInterpretAs_Cardinal = 2,
    SayAsInterpretAs_Ordinal = 3,
    SayAsInterpretAs_Number = 4,
    SayAsInterpretAs_Date = 5,
    SayAsInterpretAs_Time = 6,
    SayAsInterpretAs_Telephone = 7,
    SayAsInterpretAs_Currency = 8,
    SayAsInterpretAs_Net = 9,
    SayAsInterpretAs_Url = 10,
    SayAsInterpretAs_Address = 11,
    SayAsInterpretAs_Alphanumeric = 12,
    SayAsInterpretAs_Name = 13,
    SayAsInterpretAs_Media = 14,
    SayAsInterpretAs_Date_MonthDayYear = 15,
    SayAsInterpretAs_Date_DayMonthYear = 16,
    SayAsInterpretAs_Date_YearMonthDay = 17,
    SayAsInterpretAs_Date_YearMonth = 18,
    SayAsInterpretAs_Date_MonthYear = 19,
    SayAsInterpretAs_Date_DayMonth = 20,
    SayAsInterpretAs_Date_MonthDay = 21,
    SayAsInterpretAs_Date_Year = 22,
    SayAsInterpretAs_Time_HoursMinutesSeconds12 = 23,
    SayAsInterpretAs_Time_HoursMinutes12 = 24,
    SayAsInterpretAs_Time_HoursMinutesSeconds24 = 25,
    SayAsInterpretAs_Time_HoursMinutes24 = 26
} SayAsInterpretAs;
public enum SayAsInterpretAs : int
{
    SayAsInterpretAs_None = 0,
    SayAsInterpretAs_Spell = 1,
    SayAsInterpretAs_Cardinal = 2,
    SayAsInterpretAs_Ordinal = 3,
    SayAsInterpretAs_Number = 4,
    SayAsInterpretAs_Date = 5,
    SayAsInterpretAs_Time = 6,
    SayAsInterpretAs_Telephone = 7,
    SayAsInterpretAs_Currency = 8,
    SayAsInterpretAs_Net = 9,
    SayAsInterpretAs_Url = 10,
    SayAsInterpretAs_Address = 11,
    SayAsInterpretAs_Alphanumeric = 12,
    SayAsInterpretAs_Name = 13,
    SayAsInterpretAs_Media = 14,
    SayAsInterpretAs_Date_MonthDayYear = 15,
    SayAsInterpretAs_Date_DayMonthYear = 16,
    SayAsInterpretAs_Date_YearMonthDay = 17,
    SayAsInterpretAs_Date_YearMonth = 18,
    SayAsInterpretAs_Date_MonthYear = 19,
    SayAsInterpretAs_Date_DayMonth = 20,
    SayAsInterpretAs_Date_MonthDay = 21,
    SayAsInterpretAs_Date_Year = 22,
    SayAsInterpretAs_Time_HoursMinutesSeconds12 = 23,
    SayAsInterpretAs_Time_HoursMinutes12 = 24,
    SayAsInterpretAs_Time_HoursMinutesSeconds24 = 25,
    SayAsInterpretAs_Time_HoursMinutes24 = 26,
}
Public Enum SayAsInterpretAs As Integer
    SayAsInterpretAs_None = 0
    SayAsInterpretAs_Spell = 1
    SayAsInterpretAs_Cardinal = 2
    SayAsInterpretAs_Ordinal = 3
    SayAsInterpretAs_Number = 4
    SayAsInterpretAs_Date = 5
    SayAsInterpretAs_Time = 6
    SayAsInterpretAs_Telephone = 7
    SayAsInterpretAs_Currency = 8
    SayAsInterpretAs_Net = 9
    SayAsInterpretAs_Url = 10
    SayAsInterpretAs_Address = 11
    SayAsInterpretAs_Alphanumeric = 12
    SayAsInterpretAs_Name = 13
    SayAsInterpretAs_Media = 14
    SayAsInterpretAs_Date_MonthDayYear = 15
    SayAsInterpretAs_Date_DayMonthYear = 16
    SayAsInterpretAs_Date_YearMonthDay = 17
    SayAsInterpretAs_Date_YearMonth = 18
    SayAsInterpretAs_Date_MonthYear = 19
    SayAsInterpretAs_Date_DayMonth = 20
    SayAsInterpretAs_Date_MonthDay = 21
    SayAsInterpretAs_Date_Year = 22
    SayAsInterpretAs_Time_HoursMinutesSeconds12 = 23
    SayAsInterpretAs_Time_HoursMinutes12 = 24
    SayAsInterpretAs_Time_HoursMinutesSeconds24 = 25
    SayAsInterpretAs_Time_HoursMinutes24 = 26
End Enum
import enum

class SayAsInterpretAs(enum.IntEnum):
    SayAsInterpretAs_None = 0
    SayAsInterpretAs_Spell = 1
    SayAsInterpretAs_Cardinal = 2
    SayAsInterpretAs_Ordinal = 3
    SayAsInterpretAs_Number = 4
    SayAsInterpretAs_Date = 5
    SayAsInterpretAs_Time = 6
    SayAsInterpretAs_Telephone = 7
    SayAsInterpretAs_Currency = 8
    SayAsInterpretAs_Net = 9
    SayAsInterpretAs_Url = 10
    SayAsInterpretAs_Address = 11
    SayAsInterpretAs_Alphanumeric = 12
    SayAsInterpretAs_Name = 13
    SayAsInterpretAs_Media = 14
    SayAsInterpretAs_Date_MonthDayYear = 15
    SayAsInterpretAs_Date_DayMonthYear = 16
    SayAsInterpretAs_Date_YearMonthDay = 17
    SayAsInterpretAs_Date_YearMonth = 18
    SayAsInterpretAs_Date_MonthYear = 19
    SayAsInterpretAs_Date_DayMonth = 20
    SayAsInterpretAs_Date_MonthDay = 21
    SayAsInterpretAs_Date_Year = 22
    SayAsInterpretAs_Time_HoursMinutesSeconds12 = 23
    SayAsInterpretAs_Time_HoursMinutes12 = 24
    SayAsInterpretAs_Time_HoursMinutesSeconds24 = 25
    SayAsInterpretAs_Time_HoursMinutes24 = 26
// SayAsInterpretAs
pub const SayAsInterpretAs_None: i32 = 0;
pub const SayAsInterpretAs_Spell: i32 = 1;
pub const SayAsInterpretAs_Cardinal: i32 = 2;
pub const SayAsInterpretAs_Ordinal: i32 = 3;
pub const SayAsInterpretAs_Number: i32 = 4;
pub const SayAsInterpretAs_Date: i32 = 5;
pub const SayAsInterpretAs_Time: i32 = 6;
pub const SayAsInterpretAs_Telephone: i32 = 7;
pub const SayAsInterpretAs_Currency: i32 = 8;
pub const SayAsInterpretAs_Net: i32 = 9;
pub const SayAsInterpretAs_Url: i32 = 10;
pub const SayAsInterpretAs_Address: i32 = 11;
pub const SayAsInterpretAs_Alphanumeric: i32 = 12;
pub const SayAsInterpretAs_Name: i32 = 13;
pub const SayAsInterpretAs_Media: i32 = 14;
pub const SayAsInterpretAs_Date_MonthDayYear: i32 = 15;
pub const SayAsInterpretAs_Date_DayMonthYear: i32 = 16;
pub const SayAsInterpretAs_Date_YearMonthDay: i32 = 17;
pub const SayAsInterpretAs_Date_YearMonth: i32 = 18;
pub const SayAsInterpretAs_Date_MonthYear: i32 = 19;
pub const SayAsInterpretAs_Date_DayMonth: i32 = 20;
pub const SayAsInterpretAs_Date_MonthDay: i32 = 21;
pub const SayAsInterpretAs_Date_Year: i32 = 22;
pub const SayAsInterpretAs_Time_HoursMinutesSeconds12: i32 = 23;
pub const SayAsInterpretAs_Time_HoursMinutes12: i32 = 24;
pub const SayAsInterpretAs_Time_HoursMinutesSeconds24: i32 = 25;
pub const SayAsInterpretAs_Time_HoursMinutes24: i32 = 26;
// SayAsInterpretAs
const (
	SayAsInterpretAs_None int32 = 0
	SayAsInterpretAs_Spell int32 = 1
	SayAsInterpretAs_Cardinal int32 = 2
	SayAsInterpretAs_Ordinal int32 = 3
	SayAsInterpretAs_Number int32 = 4
	SayAsInterpretAs_Date int32 = 5
	SayAsInterpretAs_Time int32 = 6
	SayAsInterpretAs_Telephone int32 = 7
	SayAsInterpretAs_Currency int32 = 8
	SayAsInterpretAs_Net int32 = 9
	SayAsInterpretAs_Url int32 = 10
	SayAsInterpretAs_Address int32 = 11
	SayAsInterpretAs_Alphanumeric int32 = 12
	SayAsInterpretAs_Name int32 = 13
	SayAsInterpretAs_Media int32 = 14
	SayAsInterpretAs_Date_MonthDayYear int32 = 15
	SayAsInterpretAs_Date_DayMonthYear int32 = 16
	SayAsInterpretAs_Date_YearMonthDay int32 = 17
	SayAsInterpretAs_Date_YearMonth int32 = 18
	SayAsInterpretAs_Date_MonthYear int32 = 19
	SayAsInterpretAs_Date_DayMonth int32 = 20
	SayAsInterpretAs_Date_MonthDay int32 = 21
	SayAsInterpretAs_Date_Year int32 = 22
	SayAsInterpretAs_Time_HoursMinutesSeconds12 int32 = 23
	SayAsInterpretAs_Time_HoursMinutes12 int32 = 24
	SayAsInterpretAs_Time_HoursMinutesSeconds24 int32 = 25
	SayAsInterpretAs_Time_HoursMinutes24 int32 = 26
)
const
  SayAsInterpretAs_None = 0;
  SayAsInterpretAs_Spell = 1;
  SayAsInterpretAs_Cardinal = 2;
  SayAsInterpretAs_Ordinal = 3;
  SayAsInterpretAs_Number = 4;
  SayAsInterpretAs_Date = 5;
  SayAsInterpretAs_Time = 6;
  SayAsInterpretAs_Telephone = 7;
  SayAsInterpretAs_Currency = 8;
  SayAsInterpretAs_Net = 9;
  SayAsInterpretAs_Url = 10;
  SayAsInterpretAs_Address = 11;
  SayAsInterpretAs_Alphanumeric = 12;
  SayAsInterpretAs_Name = 13;
  SayAsInterpretAs_Media = 14;
  SayAsInterpretAs_Date_MonthDayYear = 15;
  SayAsInterpretAs_Date_DayMonthYear = 16;
  SayAsInterpretAs_Date_YearMonthDay = 17;
  SayAsInterpretAs_Date_YearMonth = 18;
  SayAsInterpretAs_Date_MonthYear = 19;
  SayAsInterpretAs_Date_DayMonth = 20;
  SayAsInterpretAs_Date_MonthDay = 21;
  SayAsInterpretAs_Date_Year = 22;
  SayAsInterpretAs_Time_HoursMinutesSeconds12 = 23;
  SayAsInterpretAs_Time_HoursMinutes12 = 24;
  SayAsInterpretAs_Time_HoursMinutesSeconds24 = 25;
  SayAsInterpretAs_Time_HoursMinutes24 = 26;
// SayAsInterpretAs
pub const SayAsInterpretAs_None: i32 = 0;
pub const SayAsInterpretAs_Spell: i32 = 1;
pub const SayAsInterpretAs_Cardinal: i32 = 2;
pub const SayAsInterpretAs_Ordinal: i32 = 3;
pub const SayAsInterpretAs_Number: i32 = 4;
pub const SayAsInterpretAs_Date: i32 = 5;
pub const SayAsInterpretAs_Time: i32 = 6;
pub const SayAsInterpretAs_Telephone: i32 = 7;
pub const SayAsInterpretAs_Currency: i32 = 8;
pub const SayAsInterpretAs_Net: i32 = 9;
pub const SayAsInterpretAs_Url: i32 = 10;
pub const SayAsInterpretAs_Address: i32 = 11;
pub const SayAsInterpretAs_Alphanumeric: i32 = 12;
pub const SayAsInterpretAs_Name: i32 = 13;
pub const SayAsInterpretAs_Media: i32 = 14;
pub const SayAsInterpretAs_Date_MonthDayYear: i32 = 15;
pub const SayAsInterpretAs_Date_DayMonthYear: i32 = 16;
pub const SayAsInterpretAs_Date_YearMonthDay: i32 = 17;
pub const SayAsInterpretAs_Date_YearMonth: i32 = 18;
pub const SayAsInterpretAs_Date_MonthYear: i32 = 19;
pub const SayAsInterpretAs_Date_DayMonth: i32 = 20;
pub const SayAsInterpretAs_Date_MonthDay: i32 = 21;
pub const SayAsInterpretAs_Date_Year: i32 = 22;
pub const SayAsInterpretAs_Time_HoursMinutesSeconds12: i32 = 23;
pub const SayAsInterpretAs_Time_HoursMinutes12: i32 = 24;
pub const SayAsInterpretAs_Time_HoursMinutesSeconds24: i32 = 25;
pub const SayAsInterpretAs_Time_HoursMinutes24: i32 = 26;
const
  SayAsInterpretAs_None* = 0
  SayAsInterpretAs_Spell* = 1
  SayAsInterpretAs_Cardinal* = 2
  SayAsInterpretAs_Ordinal* = 3
  SayAsInterpretAs_Number* = 4
  SayAsInterpretAs_Date* = 5
  SayAsInterpretAs_Time* = 6
  SayAsInterpretAs_Telephone* = 7
  SayAsInterpretAs_Currency* = 8
  SayAsInterpretAs_Net* = 9
  SayAsInterpretAs_Url* = 10
  SayAsInterpretAs_Address* = 11
  SayAsInterpretAs_Alphanumeric* = 12
  SayAsInterpretAs_Name* = 13
  SayAsInterpretAs_Media* = 14
  SayAsInterpretAs_Date_MonthDayYear* = 15
  SayAsInterpretAs_Date_DayMonthYear* = 16
  SayAsInterpretAs_Date_YearMonthDay* = 17
  SayAsInterpretAs_Date_YearMonth* = 18
  SayAsInterpretAs_Date_MonthYear* = 19
  SayAsInterpretAs_Date_DayMonth* = 20
  SayAsInterpretAs_Date_MonthDay* = 21
  SayAsInterpretAs_Date_Year* = 22
  SayAsInterpretAs_Time_HoursMinutesSeconds12* = 23
  SayAsInterpretAs_Time_HoursMinutes12* = 24
  SayAsInterpretAs_Time_HoursMinutesSeconds24* = 25
  SayAsInterpretAs_Time_HoursMinutes24* = 26
enum SayAsInterpretAs : int {
    SayAsInterpretAs_None = 0,
    SayAsInterpretAs_Spell = 1,
    SayAsInterpretAs_Cardinal = 2,
    SayAsInterpretAs_Ordinal = 3,
    SayAsInterpretAs_Number = 4,
    SayAsInterpretAs_Date = 5,
    SayAsInterpretAs_Time = 6,
    SayAsInterpretAs_Telephone = 7,
    SayAsInterpretAs_Currency = 8,
    SayAsInterpretAs_Net = 9,
    SayAsInterpretAs_Url = 10,
    SayAsInterpretAs_Address = 11,
    SayAsInterpretAs_Alphanumeric = 12,
    SayAsInterpretAs_Name = 13,
    SayAsInterpretAs_Media = 14,
    SayAsInterpretAs_Date_MonthDayYear = 15,
    SayAsInterpretAs_Date_DayMonthYear = 16,
    SayAsInterpretAs_Date_YearMonthDay = 17,
    SayAsInterpretAs_Date_YearMonth = 18,
    SayAsInterpretAs_Date_MonthYear = 19,
    SayAsInterpretAs_Date_DayMonth = 20,
    SayAsInterpretAs_Date_MonthDay = 21,
    SayAsInterpretAs_Date_Year = 22,
    SayAsInterpretAs_Time_HoursMinutesSeconds12 = 23,
    SayAsInterpretAs_Time_HoursMinutes12 = 24,
    SayAsInterpretAs_Time_HoursMinutesSeconds24 = 25,
    SayAsInterpretAs_Time_HoursMinutes24 = 26,
}
#define global SayAsInterpretAs_None                       0x0
#define global SayAsInterpretAs_Spell                      0x1
#define global SayAsInterpretAs_Cardinal                   0x2
#define global SayAsInterpretAs_Ordinal                    0x3
#define global SayAsInterpretAs_Number                     0x4
#define global SayAsInterpretAs_Date                       0x5
#define global SayAsInterpretAs_Time                       0x6
#define global SayAsInterpretAs_Telephone                  0x7
#define global SayAsInterpretAs_Currency                   0x8
#define global SayAsInterpretAs_Net                        0x9
#define global SayAsInterpretAs_Url                        0xA
#define global SayAsInterpretAs_Address                    0xB
#define global SayAsInterpretAs_Alphanumeric               0xC
#define global SayAsInterpretAs_Name                       0xD
#define global SayAsInterpretAs_Media                      0xE
#define global SayAsInterpretAs_Date_MonthDayYear          0xF
#define global SayAsInterpretAs_Date_DayMonthYear          0x10
#define global SayAsInterpretAs_Date_YearMonthDay          0x11
#define global SayAsInterpretAs_Date_YearMonth             0x12
#define global SayAsInterpretAs_Date_MonthYear             0x13
#define global SayAsInterpretAs_Date_DayMonth              0x14
#define global SayAsInterpretAs_Date_MonthDay              0x15
#define global SayAsInterpretAs_Date_Year                  0x16
#define global SayAsInterpretAs_Time_HoursMinutesSeconds12 0x17
#define global SayAsInterpretAs_Time_HoursMinutes12        0x18
#define global SayAsInterpretAs_Time_HoursMinutesSeconds24 0x19
#define global SayAsInterpretAs_Time_HoursMinutes24        0x1A