Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxLockablePersistent.Assign(TPersistent) Method

Applies compatible settings from the specified source to the current property set.

#Declaration

Delphi
procedure Assign(Source: TPersistent); override;

#Parameters

Name Type Description
Source TPersistent

A TcxLockablePersistent descendant instance.

#Remarks

Call the Assign procedure to update the parent object‘s settings with the corresponding setting values from another TcxLockablePersistent 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 parent object between BeginUpdate and EndUpdate procedure calls to avoid excessive redraw operations and improve performance.

Note

TcxLockablePersistent class descendants override the Assign procedure to copy all class-specific settings.

See Also