[This is preliminary documentation and is subject to change.]

Removes object from HandleDictionary identified by integral handle

Namespace: Tools.TotalCommanderT
Assembly: Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)]
protected bool HandleRemove(
	int handle
)
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)> _
Protected Function HandleRemove ( _
	handle As Integer _
) As Boolean
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Advanced)]
protected:
bool HandleRemove(
	int handle
)
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>]
member HandleRemove : 
        handle:int -> bool 
JScript
protected function HandleRemove(
	handle : int
) : boolean

Parameters

handle
Type: System..::..Int32
Handle of object to be removed

Return Value

Ture if handle was defined and it was removed; false if handle was not defined (i.e. it was previously destroyed or never created)

Thread Safety

This function is tread-safe

See Also