LibrariesLibraries

A collection of object libraries.

Instance Properties

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

Methods

add(
fullName ​[, withProperties])
 → Library
anyItem(
)
 → Library
count(
)
 → number
everyItem(
)
 → Library
firstItem(
)
 → Library
item(
index)
 → Library
itemByName(
name)
 → Library
itemByRange(
from, to)
 → Library
lastItem(
)
 → Library
middleItem(
)
 → Library
nextItem(
obj)
 → Library
previousItem(
obj)
 → Library
toSource(
)
 → string
add(
fullName ​[, withProperties])
 → Library
Creates a new object libary.
fullName File The library's path and file name.
withProperties Object Initial values for properties of the new Library (Optional)
anyItem(
)
 → Library
Returns any Library in the collection.
count(
)
 → number
Displays the number of elements in the Library.
everyItem(
)
 → Library
Returns every Library in the collection.
firstItem(
)
 → Library
Returns the first Library in the collection.
item(
index)
 → Library
Returns the Library with the specified index or name.
index The index or name. Can accept: Long Integer or String.
itemByName(
name)
 → Library
Returns the Library with the specified name.
name string The name.
itemByRange(
from, to)
 → Library
Returns the Libraries within the specified range.
from The Library, index, or name at the beginning of the range. Can accept: Library, Long Integer or String.
to The Library, index, or name at the end of the range. Can accept: Library, Long Integer or String.
lastItem(
)
 → Library
Returns the last Library in the collection.
middleItem(
)
 → Library
Returns the middle Library in the collection.
nextItem(
obj)
 → Library
Returns the Library whose index follows the specified Library in the collection.
obj Library The Library whose index comes before the desired Library.
previousItem(
obj)
 → Library
Returns the Library with the index previous to the specified index.
obj Library The index of the Library that follows the desired Library.
toSource(
)
 → string
Generates a string which, if executed, will return the Library.