System.Types.TValueRelationship
Delphi
TValueRelationship = -1..1;
C++
typedef System::Int8 TValueRelationship;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
type typedef |
public | System.Types.pas System.Types.hpp |
System.Types | System.Types |
Description
TValueRelationship defines value comparison results.
Routines as CompareValue that compare two values return comparison results in TValueRelationship type values. The following constants to identify value comparison results are defined in System.Types.
Constant | Value | Meaning |
---|---|---|
-1 |
The first value is less than the second value. | |
0 |
The two values are equal. | |
+1 |
The first value is greater than the second value. |