System.Variants.FindVarData

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function FindVarData(const V: Variant): PVarData;

C++

extern DELPHI_PACKAGE PVarData __fastcall FindVarData(const System::Variant &V);

Properties

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

Description

Returns pointer to variant's data.

FindVarData returns a pointer to the Variant data contained referenced by a Variant. If the Variant contains another Variant, FindVarData follows the chain of references until it finds the actual data.

See Also