Gets a value indicating whether the control is in the process of being disposed of.
[Visual Basic]
Public ReadOnly Property Disposing As Boolean
[C#]
public bool Disposing {get;}
[C++]
public: __property bool get_Disposing();
[JScript]
public function get Disposing() : Boolean; Property Value
true if the control is in the process of being disposed of; otherwise, false.
Remarks
When this property returns true, the control is in the process of being disposed of. After the control is disposed of, it can no longer be referenced as a valid Windows control. Even though the instance of a control is disposed of, it is still maintained in memory until it is removed from memory through garbage collection. When a control is disposed of, you can not call its RecreateHandle method.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also
Control Class | Control Members | System.Windows.Forms Namespace | Dispose | GC | IsHandleCreated | CreateHandle | DestroyHandle | RecreateHandle | Handle