PropagatorFunctionCollection#
- class ansys.stk.core.stkobjects.astrogator.PropagatorFunctionCollection#
Propagator Function Collection.
Overview#
Add a function to the collection. |
|
Copy a propagator function to the clipboard and removes the propagator function from the list. |
|
Retrieve a propagator function from the collection by index. |
|
Retrieve a propagator function from the collection by name. |
|
Copy a propagator function and inserts the copy into the list. |
|
Allow you to iterate through the collection. |
|
Pastes a propagator function from the clipboard into the list. |
|
Remove the specified function from the collection. |
|
Remove all functions from the collection. |
Import detail#
from ansys.stk.core.stkobjects.astrogator import PropagatorFunctionCollection
Property detail#
- property PropagatorFunctionCollection._new_enum: EnumeratorProxy#
Allow you to enumerate through the collection.
Method detail#
- PropagatorFunctionCollection.add(self, result_name: str) IComponentInfo#
Add a function to the collection.
- Parameters:
result_name :
str- Returns:
IComponentInfo
- PropagatorFunctionCollection.cut(self, index_or_name: Any) None#
Copy a propagator function to the clipboard and removes the propagator function from the list.
- PropagatorFunctionCollection.get_item_by_index(self, index: int) IComponentInfo#
Retrieve a propagator function from the collection by index.
- Parameters:
index :
int- Returns:
IComponentInfo
- PropagatorFunctionCollection.get_item_by_name(self, name: str) IComponentInfo#
Retrieve a propagator function from the collection by name.
- Parameters:
name :
str- Returns:
IComponentInfo
- PropagatorFunctionCollection.insert_copy(self, prop_func: IComponentInfo) IComponentInfo#
Copy a propagator function and inserts the copy into the list.
- Parameters:
prop_func :
IComponentInfo- Returns:
IComponentInfo
- PropagatorFunctionCollection.item(self, index_or_name: Any) IComponentInfo#
Allow you to iterate through the collection.
- Parameters:
index_or_name :
Any- Returns:
IComponentInfo
- PropagatorFunctionCollection.paste(self) IComponentInfo#
Pastes a propagator function from the clipboard into the list.
- Returns:
IComponentInfo