windowsforms-devexpress-dot-xtragrid-dot-gridcontrol-1ec6052f.md
Unlocks the GridControl object after a call to the BeginUpdate method and causes an immediate visual update.
Namespace : DevExpress.XtraGrid
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
public virtual void EndUpdate()
Public Overridable Sub
See GridControl.BeginUpdate to learn more.
The following code snippets (auto-collected from DevExpress Examples) contain references to the EndUpdate() method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
{
gridControl1.EndUpdate();
}
winforms-grid-use-layoutview-as-master-view/CS/WindowsApplication3/MasterDetailHelper.cs#L121
finally {
DetailGrid.EndUpdate();
}
Finally
gridControl1.EndUpdate()
End Try
winforms-grid-use-layoutview-as-master-view/VB/WindowsApplication3/MasterDetailHelper.vb#L131
Finally
DetailGrid.EndUpdate()
End Try
See Also