COM object EvObjects3DCollection

EvApplication > EvFile > EvObjects3DCollection

View the Echoview COM object hierarchy and the Echoview summary of COM objects.

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 infromation about a 3D object in an EV file and the ability to export 3D objects to a file.

The following EvObjects3DCollection methods and properties are detailed below:

Methods

Properties

FindByName

Count
Item

EvObjects3DCollection implements the following methods and properties:

EvObjects3DCollection methods

Description

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.

 

EvObjects3DCollection properties

Description

Count

(read-only) integer Count

Summary

Get the number of 3D objects in the collection.

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 EvFilesCollection page show several ways to use the Item property.

See also

Scripting with COM objects
EvObject3D