Web.DBWeb.THTMLTableColumn.AssignTo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure AssignTo(Dest: TPersistent); override;

C++

virtual void __fastcall AssignTo(System::Classes::TPersistent* Dest);

Properties

Type Visibility Source Unit Parent
procedure
function
public
Web.DBWeb.pas
Web.DBWeb.hpp
Web.DBWeb THTMLTableColumn

Description

Copies the properties of a THTMLTableColumn object to another THTMLTableColumn object.

Applications cannot call the AssignTo method. To assign the properties of a THTMLTableColumn object to another object, use the Assign method of the destination object.

When the Assign method of another object specifies a THTMLTableColumn object as the source of the assignment, the AssignTo method of the THTMLTableColumn object is called. AssignTo checks whether the Dest parameter is another THTMLTableColumn object, and if so, copies the values of all properties except Custom and DisplayName. If Dest is any other class of object, the inherited method is called.

See Also