COM object EvFilesetsCollection

EvApplication > EvFile > EvFilesetsCollection

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

The EvFilesetsCollection object accesses information about the set of filesets in an EV file. A fileset is item of the EvFilesetsCollection and can be accessed via the EvFile.Filesets[] property.

The EvFileset object allows you find specific information about a fileset in the EvFilesetsCollection.

The following EvFilesetsCollection methods and properties are detailed below:

Methods

Properties

FindByName
Add
Remove

Count
Item

EvFilesetsCollection implements the following interfaces:

EvFilesetsCollection methods

Description

FindByName

FindByName(string Name)

Summary

Find a fileset in the EvFilesetCollection by name and if found returns the EvFileset object for it.

Parameters
  • Name
  • The name of the fileset.
Add

boolean Add(string Name)

Summary

Add the named fileset.

Parameters
  • Name
  • The name of the fileset to add.
Return

Whether successful.

Remove

boolean Remove(IFileset Fileset)

Summary

Remove the named fileset.

Parameters
  • Fileset
  • The fileset to remove.
Return

Whether successful.

 

EvFilesetsCollection properties

Description

Count

(read-only) integer Count

Summary

Get the number of filesets in this collection.

Item

(read-only) Item[]

Summary

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