System.Types.TValueRelationship

From RAD Studio API Documentation
Jump to: navigation, search

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

LessThanValue

-1
$FFFFFFFF

The first value is less than the second value.

EqualsValue

0

The two values are equal.

GreaterThanValue

+1

The first value is greater than the second value.


See Also