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 whether this Currency value is less than or equal to a specified value.

The operator <= compares the value of the Currency object with the value specified by the rhs operand. It returns true if this Currency object has a value less than or equal to that of rhs, false otherwise.

See Also