PspTempListFactory (Object)

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

Methods


Func CreateListOfBSTRs() As
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 PspListFact As PspTempListFactory
 Dim NewList As PspListOfBSTRs
 Set NewList = PspListFact.CreateListOfBSTRs
 
Func CreateListOfDoubles() As
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 PspListFact As PspTempListFactory
 Dim NewList As PspListOfDoubles
 Set NewList = PspListFact.CreateListOfDoubles
 
Func CreateListOfLongs() As
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 PspListFact As PspTempListFactory
 Dim NewList As PspListOfLongs
 Set NewList = PspListFact.CreateListOfLongs
 
Func CreateListOfObjects() As
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 PspListFact As PspTempListFactory
 Dim NewList As PspListOfObjects
 Set NewList = PspListFact.CreateListOfObjects