System.Variants.TCustomVariantType.VarDataFromOleStr

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure VarDataFromOleStr(var V: TVarData; const Value: WideString);

C++

void __fastcall VarDataFromOleStr(TVarData &V, const System::WideString 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 WideString.

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

V is the TVarData record to be filled out.

Value is a Unicode string that becomes the value of V.

See Also