|
EvApplication > EvFile > EvFileset > EvDataFilesCollection View the Echoview COM object hierarchy and the Echoview summary of COM objects. |
The EvDataFilesCollection object gives you access to information about and the ability to add and remove data files in an EV file. A data file is an item in the EvDataFilesCollection, which is accessed via the:
The EvDataFile object gives access to specific information from a data file.
The following EvDataFilesCollection methods and properties are detailed below:
| Methods | Properties |
|
Add |
Count |
EvDataFilesCollection implements the following methods and properties:
|
Description |
|
|
Add |
Add(string FileName) SummaryAdd a data file to the collection. Parameters
ReturnNone. |
|
Remove |
Remove(DataFile) SummaryRemove the given data file from the collection. Parameters
ReturnNone. |
|
Description |
|
|
Count |
(read-only) integer Count SummaryGet the number of data files currently in the collection. |
|
Item |
(read-only) Item[] SummaryGives access to a specific datafile in the EvDataFilesCollection by index. Indexes are zero-based, so valid indexes are from 0 to Count-1. The result is an EvDataFile object. Item is the default property for this interface. The examples on the EvFilesCollection page show several ways to use the Item property. |