TablesCells

A collection of table cells.

Instance Properties

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

Methods

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