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

Removes object from HandleDictionary

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(
	Object object
)
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)> _
Protected Function HandleRemove ( _
	object As Object _
) As Boolean
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Advanced)]
protected:
bool HandleRemove(
	Object^ object
)
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>]
member HandleRemove : 
        object:Object -> bool 
JScript
protected function HandleRemove(
	object : Object
) : boolean

Parameters

object
Type: System..::..Object
Object to be removed

Return Value

True if object was present in HandleDictionary and it was removed; false if it was not present

Remarks

If object has multiple handles assigned only the first handle is destroyed

Thread Safety

This function is tread-safe

See Also