CalculationGraphCollection#

class ansys.stk.core.stkobjects.astrogator.CalculationGraphCollection#

Calculation Graph Collection.

Overview#

item

Allow you to iterate through the collection.

add

Add a calculation graph.

remove

Remove a parameter.

remove_all

Remove all parameters.

_new_enum

Allow you to enumerate through the collection.

count

Return the size of the collection.

Import detail#

from ansys.stk.core.stkobjects.astrogator import CalculationGraphCollection

Property detail#

property CalculationGraphCollection._new_enum: EnumeratorProxy#

Allow you to enumerate through the collection.

property CalculationGraphCollection.count: int#

Return the size of the collection.

Method detail#

CalculationGraphCollection.item(self, index: int) str#

Allow you to iterate through the collection.

Parameters:

index : int

Returns:

str

CalculationGraphCollection.add(self, graph_name: str) None#

Add a calculation graph.

Parameters:

graph_name : str

Returns:

None

CalculationGraphCollection.remove(self, graph_name: str) None#

Remove a parameter.

Parameters:

graph_name : str

Returns:

None

CalculationGraphCollection.remove_all(self) None#

Remove all parameters.

Returns:

None