Condividi tramite


CComCurrency::SetInteger

Chiamare questo metodo per impostare il componente Integer di un oggetto CComCurrency.

HRESULT SetInteger(
   LONGLONG nInteger 
);

Parametri

  • nInteger
    Il valore da assegnare al componente Integer del membro dati m_currency.Il segno del valore deve corrispondere al segno del componente frazionario esistente.

    nInteger deve essere compreso CY_MIN_INTEGER a CY_MAX_INTEGER importato.Questi valori sono definiti in atlcur.h.

Valore restituito

Restituisce S_OK su positivo, o un errore HRESULT in errore.

Esempio

CComCurrency cur(0, 5000);
cur.SetInteger(10);
ATLASSERT(CComCurrency(10, 5000) == cur);   

Requisiti

Header: atlcur.h

Vedere anche

Riferimenti

Classe di CComCurrency

CComCurrency::GetInteger

CComCurrency::GetFraction

CComCurrency::SetFraction