DataGrid::Dispose Method (Boolean)
.NET Framework (current version)
Disposes of the resources (other than memory) used by the System.Windows.Forms::DataGrid.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- disposing
-
Type:
System::Boolean
true to release both managed and unmanaged resources; false to release only unmanaged resources.
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.
The following code example uses the Dispose method to free resources.
Private Sub DisposeGridResources(ByVal myGrid As DataGrid) myGrid.Dispose myGrid = Nothing End Sub
.NET Framework
Available since 1.1
Available since 1.1
Show: