Skip to main content

BreadCrumbNodeCollection.BeginUpdate() Method

Locks the BreadCrumbNodeCollection by preventing visual updates of the collection and its elements until the BreadCrumbNodeCollection.EndUpdate method is called.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public virtual void BeginUpdate()

Remarks

The BeginUpdate and BreadCrumbNodeCollection.EndUpdate methods allow you to avoid flickering while performing batch modifications to the nodes. Once the BeginUpdate method has been called, modifying settings of the BreadCrumbNodeCollection and its elements does not cause an immediate visual update. So, multiple modifications can be made to the object and its elements without a major impact on performance or screen flickering. After all the desired operations have been finished, call the BreadCrumbNodeCollection.EndUpdate method.

See Also