Role: Create lists in VB environment.
Methods
- Func CreateListOfBSTRs() As
-
Returns a new empty list of strings.
- Returns:
- a empty list of strings. dd>
- 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. dd>
- 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. dd>
- 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. dd>
- 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