TransceiverCollection#
- class ansys.stk.core.stkrfchannelmodeler.TransceiverCollection#
A collection of transceiver objects.
Overview#
Given an index, returns the element in the collection. |
|
Remove the transceiver with the supplied index. |
|
Remove the supplied transceiver from the collection. |
|
Add and returns a new transceiver. |
|
Add the supplied transceiver to the collection. |
|
Remove all transceivers from the collection. |
|
Return the transceiver in the collection with the supplied identifier or Null if not found or invalid. |
Import detail#
from ansys.stk.core.stkrfchannelmodeler import TransceiverCollection
Property detail#
- property TransceiverCollection._new_enum: EnumeratorProxy#
Return an enumerator for the collection.
Method detail#
- TransceiverCollection.item(self, index: int) Transceiver #
Given an index, returns the element in the collection.
- Parameters:
index :
int
- Returns:
Transceiver
- TransceiverCollection.remove_at(self, index: int) None #
Remove the transceiver with the supplied index.
- TransceiverCollection.remove(self, transceiver: Transceiver) None #
Remove the supplied transceiver from the collection.
- Parameters:
transceiver :
Transceiver
- Returns:
- TransceiverCollection.add_new(self, type: TransceiverModelType, name: str, parent_object_path: str) Transceiver #
Add and returns a new transceiver.
- TransceiverCollection.add(self, value: Transceiver) None #
Add the supplied transceiver to the collection.
- Parameters:
value :
Transceiver
- Returns:
- TransceiverCollection.find_by_identifier(self, identifier: str) Transceiver #
Return the transceiver in the collection with the supplied identifier or Null if not found or invalid.
- Parameters:
identifier :
str
- Returns:
Transceiver