RadarAntennaBeamCollection#

class ansys.stk.core.stkobjects.RadarAntennaBeamCollection#

Class defining an radar antenna beam collection.

Overview#

item

Given an index, returns the element in the collection.

remove_at

Remove the layer with the specified index.

insert_at

Insert a new beam at the supplied index.

add

Add a new beam to the collection.

duplicate_beam

Duplicates the beam at the specified index.

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 RadarAntennaBeamCollection

Property detail#

property RadarAntennaBeamCollection.count: int#

Return the number of elements in the collection.

property RadarAntennaBeamCollection._new_enum: EnumeratorProxy#

Return an enumerator for the collection.

Method detail#

RadarAntennaBeamCollection.item(self, index: int) RadarAntennaBeam#

Given an index, returns the element in the collection.

Parameters:

index : int

Returns:

RadarAntennaBeam

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

Remove the layer with the specified index.

Parameters:

index : int

Returns:

None

RadarAntennaBeamCollection.insert_at(self, index: int) RadarAntennaBeam#

Insert a new beam at the supplied index.

Parameters:

index : int

Returns:

RadarAntennaBeam

RadarAntennaBeamCollection.add(self) RadarAntennaBeam#

Add a new beam to the collection.

Returns:

RadarAntennaBeam

RadarAntennaBeamCollection.duplicate_beam(self, index: int) RadarAntennaBeam#

Duplicates the beam at the specified index.

Parameters:

index : int

Returns:

RadarAntennaBeam