ScriptObjectSetProperty(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 public abstract void SetProperty(
string name,
params Object[] args
)
Public MustOverride Sub SetProperty (
name As String,
ParamArray args As Object()
)
public:
virtual void SetProperty(
String^ name,
... array<Object^>^ args
) abstract
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.
Implements
IScriptObjectSetProperty(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