RadarCrossSectionFrequencyBandCollection#

class ansys.stk.core.stkobjects.RadarCrossSectionFrequencyBandCollection#

Class defining a inheritable radar cross section frequency band collection.

Overview#

item

Given an index, returns the element in the collection.

remove_at

Remove the band with the supplied index.

add

Add a band with supplied minimum and maximum frequencies.

count

Return the number of elements in the collection.

_new_enum

Return an enumerator for the collection.

Import detail#

from ansys.stk.core.stkobjects import RadarCrossSectionFrequencyBandCollection

Property detail#

property RadarCrossSectionFrequencyBandCollection.count: int#

Return the number of elements in the collection.

property RadarCrossSectionFrequencyBandCollection._new_enum: EnumeratorProxy#

Return an enumerator for the collection.

Method detail#

RadarCrossSectionFrequencyBandCollection.item(self, index: int) RadarCrossSectionFrequencyBand#

Given an index, returns the element in the collection.

Parameters:

index : int

Returns:

RadarCrossSectionFrequencyBand

RadarCrossSectionFrequencyBandCollection.remove_at(self, index: int) None#

Remove the band with the supplied index.

Parameters:

index : int

Returns:

None

RadarCrossSectionFrequencyBandCollection.add(self, min_frequency: float, max_frequency: float) RadarCrossSectionFrequencyBand#

Add a band with supplied minimum and maximum frequencies.

Parameters:

min_frequency : float

max_frequency : float

Returns:

RadarCrossSectionFrequencyBand