CURRENCY

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Contains a signed 64-bit integer representing a currency value.

Header file:

Mapidefs.h

typedef struct tagCY
{
  unsigned long Lo;
  long Hi;
} CURRENCY;

Members

  • Lo
    Low-order 32 bits of the currency value.

  • Hi
    High-order 32 bits of the currency value.

Remarks

The CURRENCY structure is a scaled integer representation of a decimal number with four digits to the right of the decimal point. For example, a stored value of 327500 is to be construed as representing a currency value of 32.7500.

The CURRENCY structure is used to describe a property of type PT_CURRENCY. For information about property types, see MAPI Property Type Overview.

See Also

Reference

SPropValue

Concepts

MAPI Structures