System.Variants.TCustomVariantType.VarDataIsOrdinal

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function VarDataIsOrdinal(const V: TVarData): Boolean;

C++

bool __fastcall VarDataIsOrdinal(const TVarData &V);

Properties

Type Visibility Source Unit Parent
function protected
System.Variants.pas
System.Variants.hpp
System.Variants TCustomVariantType

Description

Indicates whether a TVarData record represents a ordinal value.

VarDataIsOrdinal returns true if the given TVarData record comes from a built-in Variant type that represents a ordinal value (such as an integer or Boolean type). VarDataIsOrdinal does not return true for data from Custom Variant types.

See Also