Datasnap.DBClient.TAggregate.Assign

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Assign(Source: TPersistent); override;

C++

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

Properties

Type Visibility Source Unit Parent
procedure
function
public
Datasnap.DBClient.pas
Datasnap.DBClient.hpp
Datasnap.DBClient TAggregate

Description

Copies the properties of another TAggregate object.

Call Assign to copy the properties of another object to the aggregate. If the Source object is another TAggregate object, Assign copies the values of its Expression, Active, IndexName, and GroupingLevel properties. Otherwise, Assign calls the inherited (Delphi) or parent class's (C++) method, which copies the properties of any object that can copy to a TAggregate from its AssignTo method.

See Also