Indexes   

SchTempListFactory (Object)

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

Method Index

CreateListOfBSTRs
This method returns a new empty list of strings.
CreateListOfDoubles
This method returns a new empty list of doubles.
CreateListOfLongs
This method returns a new empty list of long integers.
CreateListOfObjects
This method returns a new empty list of objects.

Methods


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

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