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