COM object EvExportersCollection
EvApplication > EvExportersCollection > EvFile > EvExporter
View the COM map and the COM summary. |
The EvExportersCollection object accesses information about the set of exporters in an EV file.
The EvExporter object allows you find specific information about an exporter in the EvExportersCollection.
EvExportersCollection methods and properties:
|
Description |
(read-only) integer Count SummaryGet the number of exporters in this collection. ExampleSee Exporter example. |
|
Delete(EvExporter) SummaryDelete the specified exporter object. Parameters
ReturnIf successful the specified exporter is deleted. Otherwise a message is written to the Scripting log file. ExampleSee Exporter example. |
|
FindByDynamicName(string DynamicName) SummaryFind the exporter specified by the exporter's dynamic name in the EvExportersCollection. Parameters
ReturnThe return is an EvExporter object. Null if DynamicName can not be found. ExampleThe following code snippet should return the first exporter object with a dynamic name that equals "Sv integration [{AnalysisDomain}]".
|
|
FindByName(string ExporterName) SummaryFind the exporter specified by ExporterName in the EvExportersCollection. Parameters
ReturnThe return is the EvExporter object. Null if ExporterName can not be found. ExampleSee Exporter example. |
|
(read-only) Item[] SummaryGives access to a specific exporter by index. Parameters
ReturnThe return is an EvExporter object. ExampleSee Exporter example. |