ScriptObjectItem(String, Object) Property |
Gets or 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 Object this[
string name,
params Object[] args
] { get; set; }
Public MustOverride Default Property Item (
name As String,
ParamArray args As Object()
) As Object
Get
Set
public:
virtual property Object^ default[String^ name, ... array<Object^>^ args] {
Object^ get (String^ name, ... array<Object^>^ args) abstract;
void set (String^ name, ... array<Object^>^ args, Object^ value) abstract;
}
abstract Item : Object with get, set
Parameters
- name String
- The name of the property to get or set.
- args Object
- Optional arguments for property access.
Return Value
ObjectThe value of the specified property.
Implements
IScriptObjectItemString, ObjectSee Also