COM object EvObjects3DCollection

EvApplication>EvFileCollection > EvFile > EvObjects3DCollection

 

View the COM map and the COM summary.

The EvObjects3DCollection object gives you information about the 3D objects in an EV file and is accessed using the EvFile.Objects3D[] property.

The EvObject3D object gives you access to further information about a 3D object in an EV file and the ability to export 3D objects to a file.

EvObjects3DCollection methods and properties:

Count
FindByName
Item
 

 

Description

Count

(read-only) integer Count

Summary

Get the number of 3D objects in the collection.

FindByName

FindByName(string Name)

Summary

Find a 3D object in the EvObjects3DtCollection by name and if found returns the EvObject3D object for it.

Parameters
  • Name
  • The name of the 3D object.

Item

(read-only) Item[]

Summary

Gives access to a specific 3D object in the EvObjects3DCollection by index. Indexes are zero-based, so valid indexes are from 0 to Count-1. The result is an EvObject3D 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

Scripting with COM objects
COM object hierarchy
EvObject3D