Web.HTTPProd.THTMLTableElementAttributes.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
protected
Web.HTTPProd.pas
Web.HTTPProd.hpp
Web.HTTPProd THTMLTableElementAttributes

Description

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

Applications can not call the protected AssignTo method. To assign the properties of a THTMLTableElementAttributes object to another object, use the Assign method of the destination object.

When the Assign method of another object specifies a THTMLTableElementAttributes object as the source of the assignment, the AssignTo method of the THTMLTableElementAttributes object is called. AssignTo checks whether the Dest parameter is another THTMLTableElementAttributes object, and if so, copies the values of the BgColor, Align, and VAlign properties. If Dest is any other class of object, the inherited method is called.

Note: AssignTo does not copy the Custom property.

See Also