Skip to main content

TcxCustomDataController.EndFullUpdate Method

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

Declaration

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