COM object EvTransectGroupCollection
EvApplication > EvFileCollection > EvFile > EvTransectGroupCollection
View the COM map and the COM summary. |
The EvTransectGroupCollection object allows you to access a selected transect group in the EV file. A transect group is an item in the EvTransectGroupCollection, which is accessed via the:
- EvFile.TransectGroups [] property that lists all transect groups in an EV file and is an EvTransectGroupCollection.
The EvTransectGroup object gives access to selected Transect Properties dialog box settings.
EvTransectGroupCollection methods and properties:
|
Description |
(read-only) integer Count SummaryGet the number of transect groups in this collection. |
|
Delete |
Delete(EvTransectGroup) SummaryDelete the specified transect group object. Parameters
ExampleSee also EvTransectGroup snippet. |
FindByName(string Name) SummarySearches for a transect group by its name, and if found returns the EvTransectGroup object for it. Parameters
ReturnIf found, returns the EvTransectGroup object. Example |
|
Import |
EvTransectGroup Import(string FileURL) SummaryUses Echoview File menu, Import to import a transect group from a specified *.transects.csv file. Parameters
ReturnIf successful, returns the EvTransectGroup object. Example |
(read-only) Item[] SummaryGives access to a specific transect group by index. Indexes are zero-based, so valid indexes are from 0 to Count-1. The result is an EvFile object. Item is the default property for this interface. The examples on the EvFileCollection page show several ways to use the Item property. See also EvTransectGroup snippet. |