PreflightPreflightProfiles

A collection of preflight profiles.

Instance Properties

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

Methods

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