Win32 API 日本語リファレンス
ホームSystem.EventCollector › EC_VARIANT_TYPE

EC_VARIANT_TYPE

列挙型
基底型i4

メンバー 6

名前10進16進
EcVarTypeNull00x0
EcVarTypeBoolean10x1
EcVarTypeUInt3220x2
EcVarTypeDateTime30x3
EcVarTypeString40x4
EcVarObjectArrayPropertyHandle50x5

各言語での定義

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

typedef enum EC_VARIANT_TYPE : int {
    EcVarTypeNull = 0,
    EcVarTypeBoolean = 1,
    EcVarTypeUInt32 = 2,
    EcVarTypeDateTime = 3,
    EcVarTypeString = 4,
    EcVarObjectArrayPropertyHandle = 5
} EC_VARIANT_TYPE;
public enum EC_VARIANT_TYPE : int
{
    EcVarTypeNull = 0,
    EcVarTypeBoolean = 1,
    EcVarTypeUInt32 = 2,
    EcVarTypeDateTime = 3,
    EcVarTypeString = 4,
    EcVarObjectArrayPropertyHandle = 5,
}
Public Enum EC_VARIANT_TYPE As Integer
    EcVarTypeNull = 0
    EcVarTypeBoolean = 1
    EcVarTypeUInt32 = 2
    EcVarTypeDateTime = 3
    EcVarTypeString = 4
    EcVarObjectArrayPropertyHandle = 5
End Enum
import enum

class EC_VARIANT_TYPE(enum.IntEnum):
    EcVarTypeNull = 0
    EcVarTypeBoolean = 1
    EcVarTypeUInt32 = 2
    EcVarTypeDateTime = 3
    EcVarTypeString = 4
    EcVarObjectArrayPropertyHandle = 5
// EC_VARIANT_TYPE
pub const EcVarTypeNull: i32 = 0;
pub const EcVarTypeBoolean: i32 = 1;
pub const EcVarTypeUInt32: i32 = 2;
pub const EcVarTypeDateTime: i32 = 3;
pub const EcVarTypeString: i32 = 4;
pub const EcVarObjectArrayPropertyHandle: i32 = 5;
// EC_VARIANT_TYPE
const (
	EcVarTypeNull int32 = 0
	EcVarTypeBoolean int32 = 1
	EcVarTypeUInt32 int32 = 2
	EcVarTypeDateTime int32 = 3
	EcVarTypeString int32 = 4
	EcVarObjectArrayPropertyHandle int32 = 5
)
const
  EcVarTypeNull = 0;
  EcVarTypeBoolean = 1;
  EcVarTypeUInt32 = 2;
  EcVarTypeDateTime = 3;
  EcVarTypeString = 4;
  EcVarObjectArrayPropertyHandle = 5;
// EC_VARIANT_TYPE
pub const EcVarTypeNull: i32 = 0;
pub const EcVarTypeBoolean: i32 = 1;
pub const EcVarTypeUInt32: i32 = 2;
pub const EcVarTypeDateTime: i32 = 3;
pub const EcVarTypeString: i32 = 4;
pub const EcVarObjectArrayPropertyHandle: i32 = 5;
const
  EcVarTypeNull* = 0
  EcVarTypeBoolean* = 1
  EcVarTypeUInt32* = 2
  EcVarTypeDateTime* = 3
  EcVarTypeString* = 4
  EcVarObjectArrayPropertyHandle* = 5
enum EC_VARIANT_TYPE : int {
    EcVarTypeNull = 0,
    EcVarTypeBoolean = 1,
    EcVarTypeUInt32 = 2,
    EcVarTypeDateTime = 3,
    EcVarTypeString = 4,
    EcVarObjectArrayPropertyHandle = 5,
}
#define global EcVarTypeNull                  0x0
#define global EcVarTypeBoolean               0x1
#define global EcVarTypeUInt32                0x2
#define global EcVarTypeDateTime              0x3
#define global EcVarTypeString                0x4
#define global EcVarObjectArrayPropertyHandle 0x5