System.Variants.TCustomVariantType.VarDataFromStr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure VarDataFromStr(var V: TVarData; const Value: string);

C++

void __fastcall VarDataFromStr(TVarData &V, const System::UnicodeString Value);

Properties

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

Description

Creates a TVarData record to represent a string.

Call VarDataFromStr from the implementation of a TCustomVariantType descendant to fill out a TVarData record so that it represents a specified string.

V is the TVarData record to be filled out.

Value is a string that becomes the value of V.

See Also