Click or drag to resize

IJsMapRemove Method

Removes the element with the specified key from the IJsMap.

Namespace:  DotNetBrowser.Js.Collections
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.13.0
Syntax
C#
bool Remove(
	Object key
)

Parameters

key
Type: SystemObject
The key of the element to remove.

Return Value

Type: Boolean
true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the IJsMap.
Exceptions
ExceptionCondition
ObjectDisposedException The IJsMap has already been disposed.
See Also