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