COM object EvVariablesCollection

EvApplication > EvFile > EvVariablesCollection

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

The EvVariablesCollection object allows you to access to the set of raw variables in an EV file. A variable is an item in the EvVariablesCollection, which is accessed via the:

The EvVariableBase object gives access to specific information and modifications for a variable.

The following EvVariablesCollection methods and properties are detailed below:

Methods

Properties

FindByName
FindByShortName

Count Item

 

EvVariablesCollection implements the following methods and properties:

EvVariablesCollection methods

Description

FindByName

FindByName(string Name)

Summary

Searches for a variable by its name, and if found returns the EvVariableBase object for it.

Parameters
  • Name
  • The name to search for.
Return

If found, the EvVariableBase object for the variable.

FindByShortName

FindByShortName(string Name)

Summary

Find a variable in the collection by short name, and if found returns the EvVariableBase object for it.

Parameters
  • Name
  • The name to search for.
Return

If found, the EvVariableBase object for the variable.

 

EvVariablesCollection properties

Description

Count

(read-only) integer Count

Summary

Get the number of variables in this collection.

Item

(read-only) Item[]

Summary

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