Click or drag to resize

IJsObjectPropertyCollectionRemove Method (UInt32)

Removes a property with the specified index in 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(
	uint index
)

Parameters

index
Type: SystemUInt32
The index 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