RadarTransceiverConfigurationCollection#

class ansys.stk.core.stkrfchannelmodeler.RadarTransceiverConfigurationCollection#

A collection of radar transceivers.

Overview#

item

Given an index, returns the element in the collection.

remove_at

Remove the configuration with the supplied index.

remove

Remove the supplied transceiver from the collection.

add_new

Add and returns a new configuration.

remove_all

Clear all configurations from the collection.

contains

Check to see if a given configuration exists in the collection.

count

Return the number of elements in the collection.

_new_enum

Return an enumerator for 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.

Parameters:

index : int

Returns:

None

RadarTransceiverConfigurationCollection.remove(self, transceiver: Transceiver) None#

Remove the supplied transceiver from the collection.

Parameters:

transceiver : Transceiver

Returns:

None

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:

None

RadarTransceiverConfigurationCollection.contains(self, transceiver: Transceiver) bool#

Check to see if a given configuration exists in the collection.

Parameters:

transceiver : Transceiver

Returns:

bool