System.Variant.operator !=

From RAD Studio API Documentation
Jump to: navigation, search

C++

bool __fastcall operator !=(const Variant& rhs) const;
bool __fastcall operator !=(const char* rhs) const {
bool __fastcall operator !=(int rhs) const
bool __fastcall operator !=(double rhs) const
bool __fastcall operator !=(TDateTime rhs) const

Properties

Type Visibility Source Unit Parent
function public sysvari.h System Variant


Description

Compares the Variant with another value, testing for inequality.

The operator != returns True if the Variant's value is not the same as the value specified by rhs, False otherwise. If the comparison is not possible because of an invalid variant type conversion, an EVariantError exception is thrown.

Note: Do not call the != operator directly. It is an overload of the compiler inequality operation.