System.Currency.operator >=

From RAD Studio API Documentation
Jump to: navigation, search

C++

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

Properties

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


Description

Tests whether this Currency value is greater 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’s value is greater than or equal to the value of rhs, false otherwise.

See Also