Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Control::IsDisposed Property

 

Gets a value indicating whether the control has been disposed of.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
[BrowsableAttribute(false)]
property bool IsDisposed {
	bool get();
}

Property Value

Type: System::Boolean

true if the control has been disposed of; otherwise, false.

When this property returns true, the control is disposed of and 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, you cannot call its RecreateHandle method.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft