TextMojikumiTables

A collection of mojikumi tables.

Instance Properties

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

Methods

add(
name ​[, withProperties])
 → MojikumiTable
count(
)
 → number
item(
index)
 → MojikumiTable
itemByID(
id)
 → MojikumiTable
itemByName(
name)
 → MojikumiTable
itemByRange(
from, to)
 → MojikumiTable
nextItem(
obj)
 → MojikumiTable
toSource(
)
 → string
add(
name ​[, withProperties])
 → MojikumiTable
Creates a new mojikumi table.
name string The name of the new mojikumi table.
withProperties Object 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.
index The index or name. Can accept: Long Integer or String.
itemByID(
id)
 → MojikumiTable
Returns the MojikumiTable with the specified ID.
id number The ID.
itemByName(
name)
 → MojikumiTable
Returns the MojikumiTable with the specified name.
name string The name.
itemByRange(
from, to)
 → MojikumiTable
Returns the MojikumiTables within the specified range.
from The MojikumiTable, index, or name at the beginning of the range. Can accept: MojikumiTable, Long Integer or String.
to The 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.
obj MojikumiTable The MojikumiTable whose index comes before the desired MojikumiTable.
previousItem(
obj)
 → MojikumiTable
Returns the MojikumiTable with the index previous to the specified index.
obj MojikumiTable The index of the MojikumiTable that follows the desired MojikumiTable.
toSource(
)
 → string
Generates a string which, if executed, will return the MojikumiTable.