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