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

Adds object to 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 int HandleAdd(
	Object object
)
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)> _
Protected Function HandleAdd ( _
	object As Object _
) As Integer
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Advanced)]
protected:
int HandleAdd(
	Object^ object
)
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Advanced)>]
member HandleAdd : 
        object:Object -> int 
JScript
protected function HandleAdd(
	object : Object
) : int

Parameters

object
Type: System..::..Object
Object to add and obtain handle for

Return Value

Handle assigned to object

Remarks

You can assign multiple handles to same object.

Thread Safety

This function is tread-safe

See Also