DataGrid.Dispose(Boolean) Method

Definition

Disposes of the resources (other than memory) used by the DataGrid.

protected:
 override void Dispose(bool disposing);
protected override void Dispose (bool disposing);
override this.Dispose : bool -> unit
Protected Overrides Sub Dispose (disposing As Boolean)

Parameters

disposing
Boolean

true to release both managed and unmanaged resources; false to release only unmanaged resources.

Examples

The following code example uses the Dispose method to free resources.


Private Sub DisposeGridResources(ByVal myGrid As DataGrid)
   myGrid.Dispose
   myGrid = Nothing
End Sub

Remarks

Call Dispose when you are finished using the System.Windows.Forms.DataGrid. The Dispose method leaves the System.Windows.Forms.DataGrid in an unusable state. After calling Dispose, you must release all references to the System.Windows.Forms.DataGrid so the memory it was occupying can be reclaimed by garbage collection.

Applies to