RadarTransceiverConfigurationCollection#
- class ansys.stk.core.stkrfchannelmodeler.RadarTransceiverConfigurationCollection#
A collection of radar transceivers.
Overview#
Given an index, returns the element in the collection. |
|
Remove the configuration with the supplied index. |
|
Remove the supplied transceiver from the collection. |
|
Add and returns a new configuration. |
|
Clear all configurations from the collection. |
|
Check to see if a given configuration exists in the collection. |
Import detail#
from ansys.stk.core.stkrfchannelmodeler import RadarTransceiverConfigurationCollection
Property detail#
- property RadarTransceiverConfigurationCollection.count: int#
Return the number of elements in the collection.
- property RadarTransceiverConfigurationCollection._new_enum: EnumeratorProxy#
Return an enumerator for the collection.
Method detail#
- RadarTransceiverConfigurationCollection.item(self, index: int) RadarTransceiverConfiguration #
Given an index, returns the element in the collection.
- Parameters:
index :
int
- Returns:
RadarTransceiverConfiguration
- RadarTransceiverConfigurationCollection.remove_at(self, index: int) None #
Remove the configuration with the supplied index.
- RadarTransceiverConfigurationCollection.remove(self, transceiver: Transceiver) None #
Remove the supplied transceiver from the collection.
- Parameters:
transceiver :
Transceiver
- Returns:
- RadarTransceiverConfigurationCollection.add_new(self) RadarTransceiverConfiguration #
Add and returns a new configuration.
- Returns:
RadarTransceiverConfiguration
- RadarTransceiverConfigurationCollection.remove_all(self) None #
Clear all configurations from the collection.
- Returns:
- RadarTransceiverConfigurationCollection.contains(self, transceiver: Transceiver) bool #
Check to see if a given configuration exists in the collection.
- Parameters:
transceiver :
Transceiver
- Returns: