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

TdxCustomFlowChart.CancelUpdate Method

In This Article

Discards all postponed changes and allows the control to repaint its display area.

#Declaration

Delphi
procedure CancelUpdate;

#Remarks

The flow chart control allows users to add or remove chart elements and customize their appearance and behavior. Each time you modify chart settings, the control repaints its area to reflect changes. To prevent the control from redundant repaint operations and apply all changes at once, call the BeginUpdate procedure beforehand, and call EndUpdate after you made changes. The CancelUpdate procedure is particularly useful if you need to discard the pending changes following a BeginUpdate call.

Ensure that a CancelUpdate or EndUpdate call follows every BeginUpdate call, even if an exception occurs.

See Also