|
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:
|
FindByName |
Count |
EvFilesetsCollection implements the following interfaces:
|
Description |
|
|
FindByName |
FindByName(string Name) SummaryFind a fileset in the EvFilesetCollection by name and if found returns the EvFileset object for it. Parameters
|
| Add |
boolean Add(string Name) SummaryAdd the named fileset. Parameters
ReturnWhether successful. |
| Remove |
boolean Remove(IFileset Fileset) SummaryRemove the named fileset. Parameters
ReturnWhether successful. |
|
Description |
|
|
Count |
(read-only) integer Count SummaryGet the number of filesets in this collection. |
|
Item |
(read-only) Item[] SummaryGives 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. |