SensorGraphics3DTargetProjectionCollection#

class ansys.stk.core.stkobjects.SensorGraphics3DTargetProjectionCollection#

Time Dependent Target Projection List.

Overview#

item

Given an index, returns an element in the collection.

remove_at

Remove an element from the collection using specified index.

remove_all

Remove all elements from the collection.

add

Add a new element to the collection.

count

Return the number of elements in a collection.

_new_enum

Return an enumerator that can iterate through the collection.

Import detail#

from ansys.stk.core.stkobjects import SensorGraphics3DTargetProjectionCollection

Property detail#

property SensorGraphics3DTargetProjectionCollection.count: int#

Return the number of elements in a collection.

property SensorGraphics3DTargetProjectionCollection._new_enum: EnumeratorProxy#

Return an enumerator that can iterate through the collection.

Method detail#

SensorGraphics3DTargetProjectionCollection.item(self, index: int) SensorGraphics3DProjectionElement#

Given an index, returns an element in the collection.

Parameters:

index : int

Returns:

SensorGraphics3DProjectionElement

SensorGraphics3DTargetProjectionCollection.remove_at(self, index: int) None#

Remove an element from the collection using specified index.

Parameters:

index : int

Returns:

None

SensorGraphics3DTargetProjectionCollection.remove_all(self) None#

Remove all elements from the collection.

Returns:

None

SensorGraphics3DTargetProjectionCollection.add(self) SensorGraphics3DProjectionElement#

Add a new element to the collection.

Returns:

SensorGraphics3DProjectionElement