COM object EvFilesetsCollection

EvApplication > EvFileCollection > EvFile > EvFilesetsCollection

 

View the COM map and the COM summary.

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.

EvFilesetsCollection methods and properties:

Add
Count
FindByName
Item

Remove

 

Description

Add

boolean Add(string Name)

Summary

Add the named fileset.

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

Whether successful.

Count

(read-only) integer Count

Summary

Get the number of filesets in this collection.

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.

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 EvFileCollection page show several ways to use the Item property.

Remove

boolean Remove(IFileset Fileset)

Summary

Remove the named fileset.

Parameters
  • Fileset
  • The fileset to remove.
Return

Whether successful.

See also

Scripting with COM objects
EvFileset object
COM object hierarchy