Control.IsDisposed Property

Definition

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

public:
 property bool IsDisposed { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool IsDisposed { get; }
[<System.ComponentModel.Browsable(false)>]
member this.IsDisposed : bool
Public ReadOnly Property IsDisposed As Boolean

Property Value

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

Attributes

Remarks

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.

Applies to

See also