Click or drag to resize

IJsObjectPropertyCollectionRemove Method (String)

Removes a property with the specified name from the JavaScript object. Once you remove the property, it will not be available in the current JavaScript object anymore.

Namespace:  DotNetBrowser.Js
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.13.0
Syntax
C#
bool Remove(
	string name
)

Parameters

name
Type: SystemString
The name of the property or function.

Return Value

Type: Boolean
true if the property was successfully removed.
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe IJsObject has already been disposed.
ConnectionClosedExceptionThe connection to the Chromium engine is closed.
See Also