pycatia.cat_sch_platform_interfaces.sch_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_sch_platform_interfaces.sch_temp_list_factory.SchTempListFactory(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
SchTempListFactory

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

Note

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

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

SchListOfBSTRs

create_list_of_doubles() SchListOfDoubles

Note

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

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

SchListOfDoubles

create_list_of_longs() SchListOfLongs

Note

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

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

SchListOfLongs

create_list_of_objects() SchListOfObjects

Note

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

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

SchListOfObjects