Instance Properties
| Name | Description | Access |
|---|---|---|
| length | number The number of objects in the collection. | read-only |
Methods
| anyItem( | ) |
→ AutoCorrectTable |
| count( | ) |
→ number |
| item( | index) |
→ AutoCorrectTable |
| itemByName( | name) |
→ AutoCorrectTable |
| itemByRange( | from, to) |
→ AutoCorrectTable |
| lastItem( | ) |
→ AutoCorrectTable |
| nextItem( | obj) |
→ AutoCorrectTable |
| previousItem( | obj) |
→ AutoCorrectTable |
| toSource( | ) |
→ string |
-
anyItem( )→ AutoCorrectTable -
Returns any AutoCorrectTable in the collection.
-
count( )→ number -
Displays the number of elements in the AutoCorrectTable.
-
everyItem( )→ AutoCorrectTable -
Returns every AutoCorrectTable in the collection.
-
firstItem( )→ AutoCorrectTable -
Returns the first AutoCorrectTable in the collection.
-
item( index)→ AutoCorrectTable -
Returns the AutoCorrectTable with the specified index or name.
indexThe index or name. Can accept: Long Integer or String. -
itemByName( name)→ AutoCorrectTable -
Returns the AutoCorrectTable with the specified name.
namestring The name. -
itemByRange( from, to)→ AutoCorrectTable -
Returns the AutoCorrectTables within the specified range.
fromThe AutoCorrectTable, index, or name at the beginning of the range. Can accept: AutoCorrectTable, Long Integer or String. toThe AutoCorrectTable, index, or name at the end of the range. Can accept: AutoCorrectTable, Long Integer or String. -
lastItem( )→ AutoCorrectTable -
Returns the last AutoCorrectTable in the collection.
-
middleItem( )→ AutoCorrectTable -
Returns the middle AutoCorrectTable in the collection.
-
nextItem( obj)→ AutoCorrectTable -
Returns the AutoCorrectTable whose index follows the specified AutoCorrectTable in the collection.
objAutoCorrectTable The AutoCorrectTable whose index comes before the desired AutoCorrectTable. -
previousItem( obj)→ AutoCorrectTable -
Returns the AutoCorrectTable with the index previous to the specified index.
objAutoCorrectTable The index of the AutoCorrectTable that follows the desired AutoCorrectTable. -
toSource( )→ string -
Generates a string which, if executed, will return the AutoCorrectTable.