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

TdxBasicAction.CancelUpdate Method

In This Article

Enables updating the UI elements linked to the action object without invalidating them.

#Declaration

Delphi
procedure CancelUpdate;

#Remarks

If there are multiple client controls associated with the current action object, you can use the BeginUpdate and EndUpdate/CancelUpdate procedures in order to improve performance every time the action’s state is changed.

An internal counter is used to determine whether the action object’s state is locked. All client controls associated with the action object can be updated in response to its state, caption, and/or hint changes only if the internal counter value is 0. Each call to the BeginUpdate procedure increments the internal counter by one while each call to EndUpdate/CancelUpdate decrements it by one.

Ensure that every call to BeginUpdate is followed by a call to the EndUpdate/CancelUpdate procedure, even if an exception occurs.

Note

Unlike EndUpdate, the CancelUpdate procedure discards all pending changes to the client controls associated with the current action object.

See Also