Click or drag to resize

HostFunctionssetProperty(IPropertyBag, String, Object) Method

Sets a property value in a dynamic host object that implements IPropertyBag.

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
public Object setProperty(
	IPropertyBag target,
	string name,
	Object value
)

Parameters

target  IPropertyBag
The dynamic host object that contains the property to set.
name  String
The name of the property to set.
value  Object
The new value of the specified property.

Return Value

Object
The result of the operation, which is usually the value assigned to the specified property.
Remarks
This function is provided for script languages that do not support dynamic properties.
See Also