CoverageEllipseCollection#

class ansys.stk.core.stkobjects.CoverageEllipseCollection#

Collection of elliptical areas of interest.

Overview#

item

Given an index, returns an element in the collection.

add

Add a new ellipse centered on a Place, Facility, or Target object.

remove_at

Remove an element from the collection using specified index.

remove_all

Remove all elements from the collection.

count

Return the number of elements in a collection.

_new_enum

Return an enumerator that can iterate through the collection.

Import detail#

from ansys.stk.core.stkobjects import CoverageEllipseCollection

Property detail#

property CoverageEllipseCollection.count: int#

Return the number of elements in a collection.

property CoverageEllipseCollection._new_enum: EnumeratorProxy#

Return an enumerator that can iterate through the collection.

Method detail#

CoverageEllipseCollection.item(self, index: int) CoverageEllipse#

Given an index, returns an element in the collection.

Parameters:

index : int

Returns:

CoverageEllipse

CoverageEllipseCollection.add(self, center_object_name: str) CoverageEllipse#

Add a new ellipse centered on a Place, Facility, or Target object.

Parameters:

center_object_name : str

Returns:

CoverageEllipse

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

Remove an element from the collection using specified index.

Parameters:

index : int

Returns:

None

CoverageEllipseCollection.remove_all(self) None#

Remove all elements from the collection.

Returns:

None