XMLDTDs

A collection of DTDs.

Instance Properties

Name Description Access
length number The number of objects in the collection. read-only

Methods

anyItem(
)
 → DTD
count(
)
 → number
everyItem(
)
 → DTD
firstItem(
)
 → DTD
item(
index)
 → DTD
itemByID(
id)
 → DTD
itemByRange(
from, to)
 → DTD
lastItem(
)
 → DTD
middleItem(
)
 → DTD
nextItem(
obj)
 → DTD
previousItem(
obj)
 → DTD
toSource(
)
 → string
anyItem(
)
 → DTD
Returns any DTD in the collection.
count(
)
 → number
Displays the number of elements in the DTD.
everyItem(
)
 → DTD
Returns every DTD in the collection.
firstItem(
)
 → DTD
Returns the first DTD in the collection.
item(
index)
 → DTD
Returns the DTD with the specified index or name.
index The index or name. Can accept: Long Integer or String.
itemByID(
id)
 → DTD
Returns the DTD with the specified ID.
id number The ID.
itemByRange(
from, to)
 → DTD
Returns the DTDs within the specified range.
from The DTD, index, or name at the beginning of the range. Can accept: DTD, Long Integer or String.
to The DTD, index, or name at the end of the range. Can accept: DTD, Long Integer or String.
lastItem(
)
 → DTD
Returns the last DTD in the collection.
middleItem(
)
 → DTD
Returns the middle DTD in the collection.
nextItem(
obj)
 → DTD
Returns the DTD whose index follows the specified DTD in the collection.
obj DTD The DTD whose index comes before the desired DTD.
previousItem(
obj)
 → DTD
Returns the DTD with the index previous to the specified index.
obj DTD The index of the DTD that follows the desired DTD.
toSource(
)
 → string
Generates a string which, if executed, will return the DTD.