COM object EvScenesCollection

EvApplication > EvFile > EvScenesCollection

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

The EvScenesCollection object accesses information about the set of scenes in an EV file. A scene is an item of the EvScenesCollection and can be accessed via the EvFile.Scenes[] property.

The EvScene object allows you find specific information about a scene in the EvScenesCollection.

The following EvScenesCollection methods and properties are detailed below:

Methods

Properties

FindByName

Count
Item

EvScenesCollection implements the following methods and interfaces:

EvScenesCollection methods

Description

FindByName

FindByName(string SceneName)

Summary

Find the Scene object specified by SceneName in the ScenesCollection.

Return

Null if SceneName can not be found.

 

EvScenesCollection properties

Description

Count

(read-only) integer Count

Summary

Get the number of scenes in this collection.

Item

(read-only) Item[]

Summary

Gives access to a specific scene by index. Indexes are zero-based, so valid indexes are from 0 to Count-1. The result is an EvScene 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
EvScene