Instance Properties
| Name | Description | Access | 
|---|---|---|
| length | number The number of objects in the collection. | read-only | 
Methods
| anyItem( | )  | 
                → PreflightRule | 
| count( | )  | 
                → number | 
| everyItem( | )  | 
                → PreflightRule | 
| firstItem( | )  | 
                → PreflightRule | 
| item( | index)  | 
                → PreflightRule | 
| itemByID( | id)  | 
                → PreflightRule | 
| itemByName( | name)  | 
                → PreflightRule | 
| itemByRange( | from, to)  | 
                → PreflightRule | 
| lastItem( | )  | 
                → PreflightRule | 
| middleItem( | )  | 
                → PreflightRule | 
| nextItem( | obj)  | 
                → PreflightRule | 
| previousItem( | obj)  | 
                → PreflightRule | 
| toSource( | )  | 
                → string | 
- 
        
        
anyItem( )→ PreflightRule  - 
    Returns any PreflightRule in the collection.
 - 
        
        
count( )→ number  - 
    Displays the number of elements in the PreflightRule.
 - 
        
        
everyItem( )→ PreflightRule  - 
    Returns every PreflightRule in the collection.
 - 
        
        
firstItem( )→ PreflightRule  - 
    Returns the first PreflightRule in the collection.
 - 
        
        
item( index)→ PreflightRule  - 
    Returns the PreflightRule with the specified index or name.
indexThe index or name. Can accept: Long Integer or String.  - 
        
        
itemByID( id)→ PreflightRule  - 
    Returns the PreflightRule with the specified ID.
idnumber The ID.  - 
        
        
itemByName( name)→ PreflightRule  - 
    Returns the PreflightRule with the specified name.
namestring The name.  - 
        
        
itemByRange( from, to)→ PreflightRule  - 
    Returns the PreflightRules within the specified range.
fromThe PreflightRule, index, or name at the beginning of the range. Can accept: PreflightRule, Long Integer or String. toThe PreflightRule, index, or name at the end of the range. Can accept: PreflightRule, Long Integer or String.  - 
        
        
lastItem( )→ PreflightRule  - 
    Returns the last PreflightRule in the collection.
 - 
        
        
middleItem( )→ PreflightRule  - 
    Returns the middle PreflightRule in the collection.
 - 
        
        
nextItem( obj)→ PreflightRule  - 
    Returns the PreflightRule whose index follows the specified PreflightRule in the collection.
objPreflightRule The PreflightRule whose index comes before the desired PreflightRule.  - 
        
        
previousItem( obj)→ PreflightRule  - 
    Returns the PreflightRule with the index previous to the specified index.
objPreflightRule The index of the PreflightRule that follows the desired PreflightRule.  - 
        
        
toSource( )→ string  - 
    Generates a string which, if executed, will return the PreflightRule.