BasicsIdleTasks

All attachable idle tasks.

Instance Properties

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

Methods

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