pycatia.cat_rsc_interfaces.rendering_shootings

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_rsc_interfaces.rendering_shootings.RenderingShootings(com_object)

Note

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

System.IUnknown
System.IDispatch
System.CATBaseUnknown
System.CATBaseDispatch
System.Collection
RenderingShootings

A collection of all the Rendering Shootings objects.
add() RenderingShooting

Note

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

Adds a new shooting to the shootings collection.
Return type:

RenderingShooting

item(i_index: cat_variant) RenderingShooting

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Func Item(CATVariant iIndex) As RenderingShooting

Returns a renderingshooting index in the renderingshootings
collection.

Parameters:

iIndex
The index of the shooting to retrieve in the collection of
shootings. Compared with other collections, you cannot use the name of the
shooting as argument.

Returns:
The retrieved shooting

Example:

The following example returns in MyShooting the sixth shooting in a
shootings collection.

Dim MyShooting As RenderingShooting
Set MyShooting = RenderingShootings.Item(6)
Parameters:

i_index (cat_variant) –

Return type:

RenderingShooting

remove(i_index: cat_variant) None

Note

CAA V5 Visual Basic Help (2020-09-25 14:34:21.593357))
o Sub Remove(CATVariant iIndex)

Removes a shooting from the shootings collection.
Parameters:

i_index (cat_variant) –

Return type:

None

remove_all() None

Note

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

Removes all shootings from the collection.
Return type:

None