TargeterGraphCollection#
- class ansys.stk.core.stkobjects.astrogator.TargeterGraphCollection#
Bases:
IRuntimeTypeInfoProvider
Targeter Graphs.
Overview#
Allow you to iterate through the collection. |
|
Add a new targeter graph. |
|
Remove a targeter graph. |
|
Copy a targeter graph to the clipboard and removes the targeter graph from the list. |
|
Pastes a targeter graph from the clipboard into the list. |
|
Copy a targeter graph and inserts the copy into the list. |
|
Retrieve a targeter graph from the collection by index. |
|
Retrieve a targeter graph from the collection by name. |
Allow you to enumerate through the collection. |
|
Return the size of the collection. |
|
Return the RuntimeTypeInfo interface to access properties at runtime. |
Import detail#
from ansys.stk.core.stkobjects.astrogator import TargeterGraphCollection
Property detail#
- property TargeterGraphCollection._new_enum: EnumeratorProxy#
Allow you to enumerate through the collection.
- property TargeterGraphCollection.provide_runtime_type_info: RuntimeTypeInfo#
Return the RuntimeTypeInfo interface to access properties at runtime.
Method detail#
- TargeterGraphCollection.item(self, index_or_name: Any) TargeterGraph #
Allow you to iterate through the collection.
- Parameters:
index_or_name :
Any
- Returns:
TargeterGraph
- TargeterGraphCollection.add_graph(self) TargeterGraph #
Add a new targeter graph.
- Returns:
TargeterGraph
- TargeterGraphCollection.cut(self, index_or_name: Any) None #
Copy a targeter graph to the clipboard and removes the targeter graph from the list.
- TargeterGraphCollection.paste(self) TargeterGraph #
Pastes a targeter graph from the clipboard into the list.
- Returns:
TargeterGraph
- TargeterGraphCollection.insert_copy(self, graph: TargeterGraph) TargeterGraph #
Copy a targeter graph and inserts the copy into the list.
- Parameters:
graph :
TargeterGraph
- Returns:
TargeterGraph
- TargeterGraphCollection.get_item_by_index(self, index: int) TargeterGraph #
Retrieve a targeter graph from the collection by index.
- Parameters:
index :
int
- Returns:
TargeterGraph
- TargeterGraphCollection.get_item_by_name(self, name: str) TargeterGraph #
Retrieve a targeter graph from the collection by name.
- Parameters:
name :
str
- Returns:
TargeterGraph