MapiType Enumeration

Contains possible MAPI property types which can be stored with message object.

Namespace:  Aspose.Email.Mapi.Msg
Assembly:  Aspose.Email (in Aspose.Email.dll) Version: 20.2
Syntax
public enum MapiType
Members
  Member nameValueDescription
None0 No values are set.
PT_SHORT2 2 bytes, a 16-bit integer
PT_LONG3 4 bytes, a 32-bit integer
PT_FLOAT4 4 bytes, a 32-bit floating point number
PT_DOUBLE5 8 bytes, a 64-bit floating point number
PT_CURRENCY6 8 bytes, a 64-bit signed, scaled integer representation of a decimal currency value, with 4 places to the right of the decimal point
PT_APPTIME7 8 bytes, a 64-bit floating point number in which the whole number part represents the number of days since December 30, 1899, and the fractional part represents the fraction of a day since midnight
PT_ERROR10 4 bytes, a 32-bit integer encoding error information
PT_BOOLEAN11 1 byte, restricted to 1 or 0
PT_OBJECT13 The property value is a COM object
PT_LONGLONG20 8 bytes, a 64-bit integer
PT_UNICODE31 Variable size, a string of Unicode characters in UTF-16LE encoding with terminating null character(0x0000)
PT_STRING830 Variable size, a string of multi-byte characters in externally specified encoding with terminating null character (single 0 byte).
PT_SYSTIME64 8 bytes, a 64-bit integer representing the number of 100-nanosecond intervals since January 1, 1601
PT_CLSID72 16 bytes, a GUID with Data1, Data2, and Data3 fields in little-endian format
PT_BINARY258 Variable size, a byte array
PT_MV_SHORT4098 Variable size, a set of PT_SHORT values.
PT_MV_LONG4099 Variable size, a set of PT_LONG values.
PT_MV_FLOAT4100 Variable size, a set of PT_FLOAT values.
PT_MV_DOUBLE4101 Variable size, a set of PT_DOUBLE values.
PT_MV_CURRENCY4102 Variable size, a set of PT_CURRENCY values.
PT_MV_APPTIME4103 Variable size, a set of PT_APPTIME values.
PT_MV_LONGLONG4116 Variable size, a set of PT_LONGLONG values.
PT_MV_UNICODE4127 Variable size, a set of PT_UNICODE values.
PT_MV_STRING84126 Variable size, a set of PT_STRING8 values.
PT_MV_SYSTIME4160 Variable size, a set of PT_SYSTIME values.
PT_MV_CLSID4168 Variable size, a set of PT_CLSID values.
PT_MV_BINARY4354 Variable size, a set of PT_BINARY values.
See Also