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