PropertyType 열거형(windows.foundation.h)
IPropertyValue 인터페이스를 구현하는 Windows 런타임 개체에 저장된 형식을 식별합니다.
Syntax
typedef enum PropertyType {
PropertyType_Empty = 0,
PropertyType_UInt8 = 1,
PropertyType_Int16 = 2,
PropertyType_UInt16 = 3,
PropertyType_Int32 = 4,
PropertyType_UInt32 = 5,
PropertyType_Int64 = 6,
PropertyType_UInt64 = 7,
PropertyType_Single = 8,
PropertyType_Double = 9,
PropertyType_Char16 = 10,
PropertyType_Boolean = 11,
PropertyType_String = 12,
PropertyType_Inspectable = 13,
PropertyType_DateTime = 14,
PropertyType_TimeSpan = 15,
PropertyType_Guid = 16,
PropertyType_Point = 17,
PropertyType_Size = 18,
PropertyType_Rect = 19,
PropertyType_OtherType = 20,
PropertyType_UInt8Array = 1025,
PropertyType_Int16Array = 1026,
PropertyType_UInt16Array = 1027,
PropertyType_Int32Array = 1028,
PropertyType_UInt32Array = 1029,
PropertyType_Int64Array = 1030,
PropertyType_UInt64Array = 1031,
PropertyType_SingleArray = 1032,
PropertyType_DoubleArray = 1033,
PropertyType_Char16Array = 1034,
PropertyType_BooleanArray = 1035,
PropertyType_StringArray = 1036,
PropertyType_InspectableArray = 1037,
PropertyType_DateTimeArray = 1038,
PropertyType_TimeSpanArray = 1039,
PropertyType_GuidArray = 1040,
PropertyType_PointArray = 1041,
PropertyType_SizeArray = 1042,
PropertyType_RectArray = 1043,
PropertyType_OtherTypeArray = 1044
} ;
상수
PropertyType_Empty 값: 0 개체에 값이 없습니다. |
PropertyType_UInt8 값: 1 개체에 부호 없는 8비트 정수가 포함되어 있습니다. |
PropertyType_Int16 값: 2 개체에 서명된 16비트 정수가 포함됩니다. |
PropertyType_UInt16 값: 3 개체에 부호 없는 16비트 정수가 포함되어 있습니다. |
PropertyType_Int32 값: 4 개체에 부 서명된 32비트 정수가 포함되어 있습니다. |
PropertyType_UInt32 값: 5 개체에 부호 없는 32비트 정수가 포함되어 있습니다. |
PropertyType_Int64 값: 6 개체에 부가된 64비트 정수가 포함되어 있습니다. |
PropertyType_UInt64 값: 7 개체에 부호 없는 64비트 정수가 포함되어 있습니다. |
PropertyType_Single 값: 8 개체에는 32비트 부동 소수점 값이 포함됩니다. 이 값은 IEEE 754 표준을 준수합니다. |
PropertyType_Double 값: 9 개체에는 64비트 부동 소수점 값이 포함됩니다. 이 값은 IEEE 754 표준을 준수합니다. |
PropertyType_Char16 값: 10 개체에 16비트 문자가 포함되어 있습니다. 이 문자는 UTF-16(유니코드) 코드 단위를 나타냅니다. |
PropertyType_Boolean 값: 11 개체에 8비트 부울 값이 포함됩니다. |
PropertyType_String 값: 12 개체에 HSTRING이 포함되어 있습니다. |
PropertyType_Inspectable 값: 13 개체에는 IInspectable 인터페이스를 구현하는 개체가 포함되어 있습니다. |
PropertyType_DateTime 값: 14 개체에 DateTime이 포함되어 있습니다. |
PropertyType_TimeSpan 값: 15 개체에 TimeSpan이 포함되어 있습니다. |
PropertyType_Guid 값: 16 개체에 GUID가 포함되어 있습니다. |
PropertyType_Point 값: 17 개체에 Point가 포함되어 있습니다. |
PropertyType_Size 값: 18 개체에 Size가 포함되어 있습니다. |
PropertyType_Rect 값: 19 개체에 Rect가 포함되어 있습니다. |
PropertyType_OtherType 값: 20 개체에 지정되지 않은 형식이 포함되어 있습니다. |
PropertyType_UInt8Array 값: 1025 개체에는 부호 없는 8비트 정수 배열이 포함되어 있습니다. |
PropertyType_Int16Array 값: 1026 개체에 서명된 16비트 정수 배열이 포함되어 있습니다. |
PropertyType_UInt16Array 값: 1027 개체에는 부호 없는 16비트 정수 배열이 포함되어 있습니다. |
PropertyType_Int32Array 값: 1028 개체에는 서명된 32비트 정수의 배열이 포함되어 있습니다. |
PropertyType_UInt32Array 값: 1029 개체에는 부호 없는 32비트 정수 배열이 포함되어 있습니다. |
PropertyType_Int64Array 값: 1030 개체에 서명된 64비트 정수의 배열이 포함되어 있습니다. |
PropertyType_UInt64Array 값: 1031 개체에는 부호 없는 64비트 정수 배열이 포함되어 있습니다. |
PropertyType_SingleArray 값: 1032 개체는 32비트 부동 소수점 값의 배열을 포함합니다. |
PropertyType_DoubleArray 값: 1033 개체는 64비트 부동 소수점 값의 배열을 포함합니다. |
PropertyType_Char16Array 값: 1034 개체는 16비트 문자의 배열을 포함합니다. |
PropertyType_BooleanArray 값: 1035 개체에는 8비트 부울 값의 배열이 포함되어 있습니다. |
PropertyType_StringArray 값: 1036 개체에는 HSTRING 배열이 포함되어 있습니다. |
PropertyType_InspectableArray 값: 1037 개체에는 IInspectable 인터페이스를 구현하는 개체의 배열이 포함되어 있습니다. |
PropertyType_DateTimeArray 값: 1038 개체에 DateTime 배열이 포함되어 있습니다. |
PropertyType_TimeSpanArray 값: 1039 개체에는 TimeSpan 배열이 포함되어 있습니다. |
PropertyType_GuidArray 값: 1040 개체에는 GUID 배열이 포함되어 있습니다. |
PropertyType_PointArray 값: 1041 개체에 Point 배열이 포함되어 있습니다. |
PropertyType_SizeArray 값: 1042 개체에 Size 배열이 포함되어 있습니다. |
PropertyType_RectArray 값: 1043 개체에 Rect 배열이 포함되어 있습니다. |
PropertyType_OtherTypeArray 값: 1044 개체는 지정되지 않은 형식의 배열을 포함합니다. |
요구 사항
요구 사항 | 값 |
---|---|
지원되는 최소 클라이언트 | Windows 8 |
지원되는 최소 서버 | Windows Server 2012 |
머리글 | windows.foundation.h |