System.Variants.VarTypeIsValidArrayType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function VarTypeIsValidArrayType(const AVarType: TVarType): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall VarTypeIsValidArrayType(const System::Word AVarType);

Properties

Type Visibility Source Unit Parent
function public
System.Variants.pas
System.Variants.hpp
System.Variants System.Variants

Description

Indicates whether a Variant type code represents a type that can be used for the elements in a Variant array.

VarTypeIsValidArrayType indicates whether AVarType is the type code for a Variant type that can represent the elements of a Variant array. This function is only intended for use with built-in Variant types. It returns false for custom Variant types, although they can be used for the elements of Variant arrays.

See Also