Instance Properties
Name | Description | Access |
---|---|---|
length | number The number of objects in the collection. | read-only |
Methods
anyItem( | ) |
→ K4Rendition |
count( | ) |
→ number |
everyItem( | ) |
→ K4Rendition |
firstItem( | ) |
→ K4Rendition |
item( | index) |
→ K4Rendition |
itemByRange( | from, to) |
→ K4Rendition |
k4GetById( | k4Id) |
→ Object |
k4GetByName( | k4Name) |
→ Object |
lastItem( | ) |
→ K4Rendition |
middleItem( | ) |
→ K4Rendition |
nextItem( | obj) |
→ K4Rendition |
previousItem( | obj) |
→ K4Rendition |
toSource( | ) |
→ string |
-
anyItem( )→ K4Rendition -
Returns any K4Rendition in the collection.
-
count( )→ number -
Displays the number of elements in the K4Rendition.
-
everyItem( )→ K4Rendition -
Returns every K4Rendition in the collection.
-
firstItem( )→ K4Rendition -
Returns the first K4Rendition in the collection.
-
item( index)→ K4Rendition -
Returns the K4Rendition with the specified index or name.
index
The index or name. Can accept: Long Integer or String. -
itemByRange( from, to)→ K4Rendition -
Returns the K4Renditions within the specified range.
from
The K4Rendition, index, or name at the beginning of the range. Can accept: K4Rendition, Long Integer or String. to
The K4Rendition, index, or name at the end of the range. Can accept: K4Rendition, Long Integer or String. -
k4GetById( k4Id)→ Object -
K4 Get By ID
k4Id
string K4 ID -
k4GetByName( k4Name)→ Object -
K4 Get By Name
k4Name
string K4 Name -
lastItem( )→ K4Rendition -
Returns the last K4Rendition in the collection.
-
middleItem( )→ K4Rendition -
Returns the middle K4Rendition in the collection.
-
nextItem( obj)→ K4Rendition -
Returns the K4Rendition whose index follows the specified K4Rendition in the collection.
obj
K4Rendition The K4Rendition whose index comes before the desired K4Rendition. -
previousItem( obj)→ K4Rendition -
Returns the K4Rendition with the index previous to the specified index.
obj
K4Rendition The index of the K4Rendition that follows the desired K4Rendition. -
toSource( )→ string -
Generates a string which, if executed, will return the K4Rendition.