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. |
Property Getters/Setters Detail |
---|
getCount : Number | |
function getCount() |
get : DocumentProperty | |
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.get : DocumentProperty | |
function get(index) |
index
- Zero-based index of the Method Detail |
---|
iterator | |
function iterator() |
contains | |
function contains(name) |
name: String
- The case-insensitive name of the property.indexOf | |
function indexOf(name) |
name: String
- The case-insensitive name of the property.remove | |
function remove(name) |
name: String
- The case-insensitive name of the property.removeAt | |
function removeAt(index) |
index: Number
- The zero based index.clear | |
function clear() |