RAD Studio VCL Reference
|
Indicates whether the specified variant has an undefined value.
function VarIsClear(const V: Variant): Boolean;
Boolean VarIsClear(const Variant V);
VarIsClear returns true if the given variant's value is undefined. The value can be undefined for any of several reasons:
The System::Variant may have had its value set to Unassigned.
The System::Variant's value may be an interface type that has been set to nil (Delphi) or NULL (C++).
The System::Variant may be a custom variant that returns true from its IsClear method.
In all other cases, the function result is false.
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|