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.BeginUpdate Method

In This Article

Forbids the control from repainting its area until an EndUpdate procedure call.

#Declaration

Delphi
procedure BeginUpdate;

#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 make changes.

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

See Also