COM object EvDataPaths

EvApplication > EvFilesCollection > EvFile > EvFileProperties > EvDataPaths

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

The EvDataPaths object accesses information about the set of data paths under the Data file locations section of the EV File page of the EV File Properties dialog box EV. A data path is item in a collection of data paths and can be accessed via the EvFileProperties.DataPath property.

The following EvDataPaths methods and properties are detailed below:

Methods

Properties: Collections, Classes and Members

Find
Add
Remove
Clear
Insert

Count
Item

EvDataPaths implements the following interfaces:

EvDataPaths methods

Description

Find

Find (string Path)
Summary

Get the index of the given path within the set of data paths

Parameters
  • Path
  • The index of the data path.
Add

Add (string Path);

Summary

Add the data path to the set of data paths.

Parameters
  • Path
  • The name of the data path to add.
Remove

Remove (string Path);

Summary

Remove the data path from the set of data paths.

Parameters
  • Path
  • The data path to remove.
Clear

Clear();

Summary

Re-set the collection of data paths to the default data paths specified for new EV files.

For new EV files, the locations specified on the File Locations page of the Echoview Configuration dialog box are listed as the default data paths.

Insert

Insert (string Path, Index)

Summary

Insert the specified data path at the specified index for the set of data paths. It is possible to add an item before item(0).

Parameters
  • Path
  • Name of the data path.
  • Index
  • The number of the index. 0 represents the first item, Count represents the last item.

 

EvDataPaths properties

Description

Count

(read-only) integer Count

Summary

Get the number of data paths in this set of data paths.

Item

(read-only) Item[]

Summary

Gives access to a specific data path by index. Indexes are zero-based, so valid indexes are from 0 to Count-1. The result is a EvFileProperties.DataPaths 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
EvFileProperties object