System.Currency.operator ==

From RAD Studio API Documentation
Jump to: navigation, search

C++

bool __fastcall operator ==(const Currency& rhs) const
bool __fastcall operator ==(int rhs) const
bool __fastcall operator ==(double rhs) const

Properties

Type Visibility Source Unit Parent
function public syscurr.h System Currency


Description

Tests for equality between the Currency object's value and a specified value.

The == operator == compares the value of the Currency object with the value specified by the rhs operand. If the two values are the same, the operator == returns True. If the values differ, the operator == returns False.

See Also