Data.DBXCommon.TDictionaryStringList.Assign

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Assign(APersistent: TPersistent); override;

C++

virtual void __fastcall Assign(System::Classes::TPersistent* APersistent);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Data.DBXCommon.pas
Data.DBXCommon.hpp
Data.DBXCommon TDictionaryStringList

Description

Sets, from a source object, the strings in the list and the possibly associated objects.

Data.DBXCommon.TDictionaryStringList.Assign inherits from System.Classes.TStringList.Assign. All content below this line refers to System.Classes.TStringList.Assign.

Sets, from a source object, the strings in the list and the possibly associated objects.

Use Assign to set the value of the TStringList object from another object. If Source is of type TStringList, the list is set to the list of the source TStringList object, and if associated objects are supported, any associated objects are copied from Source as well.

If Source is not of type TStringList, the inherited Assign method will set the value of the list from any object that supports TStringList in its AssignTo method.

See Also

Code Examples