LayoutEPSs

A collection of EPS files.

Instance Properties

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

Methods

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