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

TdxCustomOrgChart.BeginUpdate Method

In This Article

Disables the control’s repainting until the EndUpdate procedure is called.

#Declaration

Delphi
procedure BeginUpdate;

#Remarks

Each time the control’s content changes (due to adding, removing, changing node appearance settings, etc.) the client area is repainted to reflect the changes. Therefore, performing multiple changes at once results in a sequence of multiple repainting operations.

The BeginUpdate procedure postpones control’s content changes. To apply all the pending changes, call the EndUpdate procedure.

Ensure that every BeginUpdate call is followed by an EndUpdate call, even if an exception occurs.

See Also