Click or drag to resize

ScriptObject.SetProperty(String, Object[]) Method

Sets the value of a named script object property.

Namespace: Microsoft.ClearScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.5.0
Syntax
public abstract void SetProperty(
	string name,
	params Object[] args
)

Parameters

name  String
The name of the property to set.
args  Object[]
An array containing optional arguments and the new property value.

Implements

IScriptObject.SetProperty(String, Object[])
Remarks
The args array must contain at least one element. The new property value must be the last element of the array.
See Also