TextChanges

A collection of changes.

Instance Properties

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

Methods

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