Back to Devexpress

GridControl.EndUpdate() Method

windowsforms-devexpress-dot-xtragrid-dot-gridcontrol-1ec6052f.md

latest3.5 KB
Original Source

GridControl.EndUpdate() Method

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

Declaration

csharp
public virtual void EndUpdate()
vb
Public Overridable Sub

Remarks

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.

XDL_how-to-convert-the-criteriaoperator-to-a-lambda-expression-to-use-it-for-iqueryable-e2596/CS/WindowsFormsApplication152/Form1.cs#L67

csharp
{
    gridControl1.EndUpdate();
}

winforms-grid-use-layoutview-as-master-view/CS/WindowsApplication3/MasterDetailHelper.cs#L121

csharp
finally {
    DetailGrid.EndUpdate();
}

XDL_how-to-convert-the-criteriaoperator-to-a-lambda-expression-to-use-it-for-iqueryable-e2596/VB/WindowsFormsApplication152/Form1.vb#L49

vb
Finally
    gridControl1.EndUpdate()
End Try

winforms-grid-use-layoutview-as-master-view/VB/WindowsApplication3/MasterDetailHelper.vb#L131

vb
Finally
    DetailGrid.EndUpdate()
End Try

See Also

GridControl.BeginUpdate

BaseView.BeginUpdate

EndUpdate()

Batch Modifications

GridControl Class

GridControl Members

DevExpress.XtraGrid Namespace