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

In This Article

Enables repainting of the control’s content after a call to the BeginUpdate procedure.

#Declaration

Delphi
procedure EndUpdate;

#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 EndUpdate procedure applies all the pending changes. To postpone the control’s content changes call the BeginUpdate procedure.

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

See Also