PenInputPanel.Dispose Method (Boolean)
Deprecated. Releases the unmanaged resources used by the PenInputPanel object and optionally releases the managed resources. PenInputPanel has been replaced by Microsoft.Ink.TextInput.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink (in microsoft.ink.dll)
Syntax
'Declaration
Protected Overridable Sub Dispose ( _
disposing As Boolean _
)
'Usage
Dim disposing As Boolean
Me.Dispose(disposing)
protected virtual void Dispose (
bool disposing
)
protected:
virtual void Dispose (
bool disposing
)
protected void Dispose (
boolean disposing
)
protected function Dispose (
disposing : boolean
)
Not applicable.
Parameters
- disposing
Set to true to release both managed and unmanaged resources; false to release only unmanaged resources.
Remarks
This method is called by the public Dispose method and the Finalize method. The Dispose method invokes the protected Dispose(Boolean) method with the disposing parameter set to true. The Finalize method invokes the Dispose(Boolean) method with the disposing parameter set to false.
When the disposing parameter is set to true, this method releases all resources held by any managed objects that this PenInputPanel object references. The Dispose(Boolean) method does this by invoking the Dispose method of each referenced object that implements IDisposable.
Note
to Inheritors The Dispose method can be called multiple times by other objects. When overriding Dispose(Boolean), be careful not to reference objects that have been previously disposed of in an earlier call to Dispose. For more information about how to implement Dispose(Boolean), see Implementing a Dispose Method.
For more information about garbage collection, see Programming for Garbage Collection.
Platforms
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Version Information
.NET Framework
Supported in: 3.0
See Also
Reference
PenInputPanel Class
PenInputPanel Members
Microsoft.Ink Namespace
Microsoft.Ink.PenInputPanel.Dispose