TcxLockableComponent.Assign(TPersistent) Method
In This Article
Applies compatible settings from the specified source component to the current component in a batch.
#Declaration
Delphi
procedure Assign(Source: TPersistent); override;
#Parameters
Name | Type | Description |
---|---|---|
Source | TPersistent | A Tcx |
#Remarks
Call the Assign
procedure to update the current component’s settings with the corresponding setting values from another TcxLockableComponent descendant instance. The Assign
procedure copies only those settings from Source
that the current component has.
The Assign
procedure encloses all changes it applies to the current component between BeginUpdate and EndUpdate procedure calls to avoid excessive redraw operations and improve performance.
Note
TcxAssign
procedure to copy all class-specific settings.
See Also