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

TcxCustomDataController.EndFullUpdate Method

In This Article

Unlocks the data controller and its associated visual object after the BeginFullUpdate method call.

#Declaration

Delphi
procedure EndFullUpdate; virtual;

#Remarks

Use the EndFullUpdate method to unlock the data controller and the object that displays its data after they have been locked using the BeginFullUpdate method. Note that the number of BeginFullUpdate method calls must match the number of EndFullUpdate method calls to ensure unlocking. Thus, it is recommended to use try…finally statements when performing a batch update.

Note

Do not call the Append, Insert, Post, SetEditValue, and FindRecordIndexByText methods within the BeginUpdate/EndUpdate and BeginFullUpdate/EndFullUpdate blocks.

See Also