System.Variants.TCustomVariantType.SimplisticCopy
Delphi
procedure SimplisticCopy(var Dest: TVarData; const Source: TVarData;
const Indirect: Boolean = False);
C++
void __fastcall SimplisticCopy(TVarData &Dest, const TVarData &Source, const bool Indirect = false);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
protected | System.Variants.pas System.Variants.hpp |
System.Variants | TCustomVariantType |
Description
Performs a simple block copy of one TVarData record to another.
Call SimplisticCopy from the implementation of a TCustomVariantType descendant to block copy one TVarData record to another.
Dest is the TVarData record that receives the copy.
Source is the TVarData record to copy.
Indirect indicates whether Source represents the data (false) or merely a reference to the data (true).