| Property Getters/Setters Summary | ||
|---|---|---|
function | getCount() | |
Gets number of items in the collection.
|
||
function | get(index) | |
Returns a |
||
function | get(name) | |
Returns a |
||
| Method Summary | ||
|---|---|---|
function | clear() | |
Removes all properties from the collection.
|
||
function | contains(name) | |
Returns true if a property with the specified name exists in the collection.
|
||
function | indexOf(name) | |
Gets the index of a property by name.
|
||
function | iterator() | |
function | remove(name) | |
Removes a property with the specified name from the collection.
|
||
function | removeAt(index) | |
Removes a property at the specified index.
|
||
function getCount()
function get(name)
Returns null if a property with the specified name is not found.
name - The case-insensitive name of the property to retrieve.function get(index)
index - Zero-based index of the function iterator()
function contains(name)
name: String - The case-insensitive name of the property.function indexOf(name)
name: String - The case-insensitive name of the property.function remove(name)
name: String - The case-insensitive name of the property.function removeAt(index)
index: Number - The zero based index.function clear()