SchTempListFactory (Object)

Create temporary (non-persistent) lists to be used in VB environment.

Methods


Func CreateListOfBSTRs() As
This method returns a new empty list of strings.
Returns:
a empty list of strings.
Example:
 This example illustrates how to create a new empty list of strings.
 
 Dim SchListFact As SchTempListFactory
 Dim NewList As SchListOfBSTRs
 Set NewList = SchListFact.CreateListOfBSTRs
 
Func CreateListOfDoubles() As
This method returns a new empty list of doubles.
Returns:
a empty list of doubles.
Example:
 This example illustrates how to create a new empty list of doubles.
 
 Dim SchListFact As SchTempListFactory
 Dim NewList As SchListOfDoubles
 Set NewList = SchListFact.CreateListOfDoubles
 
Func CreateListOfLongs() As
This method returns a new empty list of long integers.
Returns:
a empty list of long integers.
Example:
 This example illustrates how to create a new empty list of long integers.
 
 Dim SchListFact As SchTempListFactory
 Dim NewList As SchListOfLongs
 Set NewList = SchListFact.CreateListOfLongs
 
Func CreateListOfObjects() As
This method returns a new empty list of objects.
Returns:
a empty list of objects.
Example:
 This example illustrates how to create a new empty list of objects.
 
 Dim SchListFact As SchTempListFactory
 Dim NewList As SchListOfObjects
 Set NewList = SchListFact.CreateListOfObjects