COM object EvScenesCollection

EvApplication>EvFileCollection > EvFile > EvScenesCollection

 

View the COM map and the COM summary.

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.

EvScenesCollection methods and properties:

Count
FindByName
Item
 

 

Description

Count

(read-only) integer Count

Summary

Get the number of scenes in this collection.

FindByName

FindByName(string SceneName)

Summary

Find the Scene object specified by SceneName in the ScenesCollection.

Return

Null if SceneName can not be found.

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

See also

Scripting with COM objects
COM object hierarchy
EvScene