RadarSarImageLocationCollection#
- class ansys.stk.core.stkrfchannelmodeler.RadarSarImageLocationCollection#
A collection of image location information.
Overview#
Given an index, returns the element in the collection. |
|
Remove the SAR image location with the supplied index. |
|
Remove the supplied SAR image location from the collection. |
|
Add and returns a new SAR image location. |
|
Clear all SAR image locations from the collection. |
|
Check to see if a given SAR image location exists in the collection. |
|
Find a SAR image location by name. Returns Null if the image location name does not exist in the collection. |
Import detail#
from ansys.stk.core.stkrfchannelmodeler import RadarSarImageLocationCollection
Property detail#
- property RadarSarImageLocationCollection.count: int#
Return the number of elements in the collection.
- property RadarSarImageLocationCollection._new_enum: EnumeratorProxy#
Return an enumerator for the collection.
Method detail#
- RadarSarImageLocationCollection.item(self, index: int) RadarSarImageLocation #
Given an index, returns the element in the collection.
- Parameters:
index :
int
- Returns:
RadarSarImageLocation
- RadarSarImageLocationCollection.remove_at(self, index: int) None #
Remove the SAR image location with the supplied index.
- RadarSarImageLocationCollection.remove(self, name_str: str) None #
Remove the supplied SAR image location from the collection.
- RadarSarImageLocationCollection.add_new(self) RadarSarImageLocation #
Add and returns a new SAR image location.
- Returns:
RadarSarImageLocation
- RadarSarImageLocationCollection.remove_all(self) None #
Clear all SAR image locations from the collection.
- Returns:
- RadarSarImageLocationCollection.contains(self, name_str: str) bool #
Check to see if a given SAR image location exists in the collection.
- RadarSarImageLocationCollection.find(self, name_str: str) RadarSarImageLocation #
Find a SAR image location by name. Returns Null if the image location name does not exist in the collection.
- Parameters:
name_str :
str
- Returns:
RadarSarImageLocation