ScriptObjectItem(Int32) Property |
Gets or sets the value of an indexed script object property.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public abstract Object this[
int index
] { get; set; }
Public MustOverride Default Property Item (
index As Integer
) As Object
Get
Set
public:
virtual property Object^ default[int index] {
Object^ get (int index) abstract;
void set (int index, Object^ value) abstract;
}
abstract Item : Object with get, set
Parameters
- index Int32
- The index of the property to get or set.
Return Value
ObjectThe value of the specified property.
Implements
IScriptObjectItemInt32See Also