Vcl.ComCtrls.TComboExItem.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
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TComboExItem

Description

Copies the properties of another TComboExItem object.

Call Assign to assign the properties of another combo box item to this one. If the Source parameter is another TComboExItem object, Assign copies the values of its Caption, ImageIndex, SelectedImageIndex, OverlayImageIndex, and Indent properties. Otherwise, Assign calls the inherited method, which copies the properties from any object that has an AssignTo method that can copy to a TComboExItem object.

See Also