System.Variants.TCustomVariantType.VarDataToStr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function VarDataToStr(const V: TVarData): string;

C++

System::UnicodeString __fastcall VarDataToStr(const TVarData &V);

Properties

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

Description

Returns a string that represents the value from a TVarData record.

Call VarDataToStr from the implementation of a TCustomVariantType descendant to extract a string that represents the value of a Variant.

V is the TVarData record that represents the value of the Variant.

See Also