pycatia.cat_plant_ship_interfaces.psp_temp_list_factory

Module initially auto generated using V5Automation files from CATIA V5 R28 on 2020-09-25 14:34:21.593357

Warning

The notes denoted “CAA V5 Visual Basic Help” are to be used as reference only. They are there as a guide as to how the visual basic / catscript functions work and thus help debugging in pycatia.

class pycatia.cat_plant_ship_interfaces.psp_temp_list_factory.PSPTempListFactory(com_object)

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357)

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.AnyObject
PspTempListFactory

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

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func CreateListOfBSTRs() As PspListOfBSTRs

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
Return type:

PSPListOfBSTRs

create_list_of_doubles() PSPListOfDoubles

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func CreateListOfDoubles() As PspListOfDoubles

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
Return type:

PSPListOfDoubles

create_list_of_longs() PSPListOfLongs

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func CreateListOfLongs() As PspListOfLongs

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
Return type:

PSPListOfLongs

create_list_of_objects() PSPListOfObjects

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func CreateListOfObjects() As PspListOfObjects

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
Return type:

PSPListOfObjects