|
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:
|
FindByName |
Count Item |
EvVariablesCollection implements the following methods and properties:
|
Description |
|
|
FindByName |
FindByName(string Name) SummarySearches for a variable by its name, and if found returns the EvVariableBase object for it. Parameters
ReturnIf found, the EvVariableBase object for the variable. |
|
FindByShortName |
FindByShortName(string Name) SummaryFind a variable in the collection by short name, and if found returns the EvVariableBase object for it. Parameters
ReturnIf found, the EvVariableBase object for the variable. |
|
Description |
|
|
Count |
(read-only) integer Count SummaryGet the number of variables in this collection. |
|
Item |
(read-only) Item[] SummaryGives 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. |