RadarActivityTimeIntervalListCollection#

class ansys.stk.core.stkobjects.RadarActivityTimeIntervalListCollection#

Class defining an radar antenna beam collection.

Overview#

item

Given an index, returns the element in the collection.

remove_at

Remove the element with the specified index.

insert_at

Insert a new element at the supplied index.

add

Add a new element to the collection.

import_from_component

Import time intervals from specified time component.

load_from_file

Load time intervals from file.

clear

Clear all elements from 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.stkobjects import RadarActivityTimeIntervalListCollection

Property detail#

property RadarActivityTimeIntervalListCollection.count: int#

Return the number of elements in the collection.

property RadarActivityTimeIntervalListCollection._new_enum: EnumeratorProxy#

Return an enumerator for the collection.

Method detail#

RadarActivityTimeIntervalListCollection.item(self, index: int) RadarActivityTimeIntervalListElement#

Given an index, returns the element in the collection.

Parameters:

index : int

Returns:

RadarActivityTimeIntervalListElement

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

Remove the element with the specified index.

Parameters:

index : int

Returns:

None

RadarActivityTimeIntervalListCollection.insert_at(self, index: int) RadarActivityTimeIntervalListElement#

Insert a new element at the supplied index.

Parameters:

index : int

Returns:

RadarActivityTimeIntervalListElement

RadarActivityTimeIntervalListCollection.add(self) RadarActivityTimeIntervalListElement#

Add a new element to the collection.

Returns:

RadarActivityTimeIntervalListElement

RadarActivityTimeIntervalListCollection.import_from_component(self, identifier: str) None#

Import time intervals from specified time component.

Parameters:

identifier : str

Returns:

None

RadarActivityTimeIntervalListCollection.load_from_file(self, path: str) None#

Load time intervals from file.

Parameters:

path : str

Returns:

None

RadarActivityTimeIntervalListCollection.clear(self) None#

Clear all elements from the collection.

Returns:

None