IScriptObjectSetProperty(String, Object) Method |
Sets the value of a named script object property.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax void SetProperty(
string name,
params Object[] args
)
Sub SetProperty (
name As String,
ParamArray args As Object()
)
void SetProperty(
String^ name,
... array<Object^>^ args
)
abstract SetProperty :
name : string *
args : Object[] -> unit
Parameters
- name String
- The name of the property to set.
- args Object
- An array containing optional arguments and the new property value.
Remarks
The args array must contain at least one element. The new
property value must be the last element of the array.
See Also