ホーム › System.EventCollector › EC_VARIANT_TYPE
EC_VARIANT_TYPE
列挙型メンバー 6
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| EcVarTypeNull | 0 | 0x0 | Null のコンテンツです。そのコンテンツを含む要素が存在しないことを示します。 |
| EcVarTypeBoolean | 1 | 0x1 | ブール値です。 |
| EcVarTypeUInt32 | 2 | 0x2 | 符号なし 32 ビット値です。 |
| EcVarTypeDateTime | 3 | 0x3 | ULONGLONG 値です。 |
| EcVarTypeString | 4 | 0x4 | 文字列値です。 |
| EcVarObjectArrayPropertyHandle | 5 | 0x5 | EC_OBJECT_ARRAY_PROPERTY_HANDLE 値です。 |
公式ドキュメント
EC_VARIANT_TYPE 列挙型は、Windows イベントコレクター関数で使用されるデータ型を指定する値を定義します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。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 Enumimport 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* = 5enum 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