TextLanguages

A collection of languages.

Instance Properties

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

Methods

anyItem(
)
 → Language
count(
)
 → number
everyItem(
)
 → Language
firstItem(
)
 → Language
item(
index)
 → Language
itemByID(
id)
 → Language
itemByName(
name)
 → Language
itemByRange(
from, to)
 → Language
lastItem(
)
 → Language
middleItem(
)
 → Language
nextItem(
obj)
 → Language
previousItem(
obj)
 → Language
toSource(
)
 → string
anyItem(
)
 → Language
Returns any Language in the collection.
count(
)
 → number
Displays the number of elements in the Language.
everyItem(
)
 → Language
Returns every Language in the collection.
firstItem(
)
 → Language
Returns the first Language in the collection.
item(
index)
 → Language
Returns the Language with the specified index or name.
index The index or name. Can accept: Long Integer or String.
itemByID(
id)
 → Language
Returns the Language with the specified ID.
id number The ID.
itemByName(
name)
 → Language
Returns the Language with the specified name.
name string The name.
itemByRange(
from, to)
 → Language
Returns the Languages within the specified range.
from The Language, index, or name at the beginning of the range. Can accept: Language, Long Integer or String.
to The Language, index, or name at the end of the range. Can accept: Language, Long Integer or String.
lastItem(
)
 → Language
Returns the last Language in the collection.
middleItem(
)
 → Language
Returns the middle Language in the collection.
nextItem(
obj)
 → Language
Returns the Language whose index follows the specified Language in the collection.
obj Language The Language whose index comes before the desired Language.
previousItem(
obj)
 → Language
Returns the Language with the index previous to the specified index.
obj Language The index of the Language that follows the desired Language.
toSource(
)
 → string
Generates a string which, if executed, will return the Language.