Share via


InkEdit.Dispose Method (Boolean)

Releases resources used by the InkEdit control.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
Protected Overrides Sub Dispose ( _
    disposing As Boolean _
)
'Usage
Dim disposing As Boolean 

Me.Dispose(disposing)
protected override void Dispose(
    bool disposing
)
protected:
virtual void Dispose(
    bool disposing
) override
protected override function Dispose(
    disposing : boolean
)

Parameters

  • disposing
    Type: System.Boolean

    Set to true to release both managed and unmanaged resources; false to release only unmanaged resources.

Remarks

This method is called by the inherited public Dispose method and the Finalize method. The Dispose method invokes the protected Dispose method with the disposing parameter set to true. The Finalize method invokes the Dispose 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 InkEdit object references. The Dispose 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, 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, see Implementing a Dispose Method.

For more information about garbage collection, see Garbage Collection.

Platforms

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

InkEdit Class

InkEdit Members

Dispose Overload

Microsoft.Ink Namespace

InkEdit.Dispose