Indexes   

PspTempListFactory (Object)

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

Method Index

CreateListOfBSTRs
Returns a new empty list of strings.
CreateListOfDoubles
Returns a new empty list of doubles.
CreateListOfLongs
Returns a new empty list of long integers.
CreateListOfObjects
Returns a new empty list of objects.

Methods


o 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
 
o 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
 
o 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
 
o 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
 

Copyright © 2006, Dassault Systèmes. All rights reserved.