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:

Count
Delete
FindByDynamicName
FindByName
Item

 

Description

Count

(read-only) integer Count

Summary

Get the number of exporters in this collection.

Example

See Exporter example.

Delete

Delete(EvExporter)

Summary

Delete the specified exporter object.

Parameters
  • EvExporter
  • A specified exporter from the EvExporters collection, represented by the EvExporter object.
Return

If successful the specified exporter is deleted.

Otherwise a message is written to the Scripting log file.

Example

See Exporter example.

FindByDynamicName

FindByDynamicName(string DynamicName)

Summary

Find the exporter specified by the exporter's dynamic name in the EvExportersCollection.

Parameters
  • DynamicName
  • String for the exporter's dynamic name.
Return

The return is an EvExporter object. Null if DynamicName can not be found.

Example

The following code snippet should return the first exporter object with a dynamic name that equals "Sv integration [{AnalysisDomain}]".

Dim vObj: Set vObj = vEvFile.Exporters.FindByDynamicName("Sv integration [{AnalysisDomain}]")

FindByName

FindByName(string ExporterName)

Summary

Find the exporter specified by ExporterName in the EvExportersCollection.

Parameters
  • ExporterName
  • String for the exporter name.
Return

The return is the EvExporter object. Null if ExporterName can not be found.

Example

See Exporter example.

Item

(read-only) Item[]

Summary

Gives access to a specific exporter by index.

Parameters
  • Item index. Indexes are zero-based, so valid indexes are from 0 to Count-1.
Return

The return is an EvExporter object.

Example

See Exporter example.

See also

Scripting with COM objects
EvExporter
COM object hierarchy