RAD Studio VCL Reference
|
TVariantRelationship describes the results of comparing two Variants.
TVariantRelationship = ( vrEqual, vrLessThan, vrGreaterThan, vrNotEqual );
enum TVariantRelationship { vrEqual, vrLessThan, vrGreaterThan, vrNotEqual };
Variants
TVariantRelationship describes the relationship between two Variant values. The following table lists the possible values:
Value |
Meaning |
vrEqual | |
vrLessThan |
A is less than B. |
vrGreaterThan |
A is larger than B. |
vrNotEqual |
A and B are not equal, but the values are such that they can't be ordered relative to each other. For example, this describes the relationship when either A or B is empty or NULL, and the other one is not. |
VarCompareValue
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|