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