COM object EvFileset

EvApplication > EvFile > EvFileset

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

The EvFileset object enables you to get information about the fileset and change aspects of the fileset.

The EvFile.Filesets[] property lists all the filesets in an EV file and is an EvFilesetsCollection.

The following EvFileset methods and properties are detailed below:

Methods

Properties: Collections, Classes and Members

GetCalibrationFileName
SetCalibrationFile

Name
Notes
StartTime
EndTime
DataFiles
Variables
TimeOffset

EvFileset offers the following methods:

EvFileset methods

Description

GetCalibrationFileName

string GetCalibrationFileName()

Summary

Get the name of the ECS file used by the fileset. An ECS file allows you to modify calibration settings for the data in a fileset of an EV file.

Example

See EvCalibration.

SetCalibrationFile

SetCalibrationFile(string Name)

Summary

Specifies and reads the ECS file.

Parameters
  • Name
  • Name of the ECS file used by the fileset for calibration.
Return

True, if successful.

Example

See EvCalibration.

EvFileset offers the following properties:

EvFileset properties

Description

Name

(read-write) string Name

Summary

Access or change the name of the fileset.

Notes

(read-write) string Notes

Summary

Access or change the notes of the fileset.

StartTime

(read-only) DATE StartTime

Summary

Get the date1 and time of the first measurement in the fileset .

EndTime

(read-only) DATE EndTime

Summary

Get the date1 and time of the last measurement in the fileset.

DataFiles

(read-only) DataFiles[]

Summary

Get access to the data files collection of the fileset.

Variables

(read-only) Variables[]

Summary

Get access to the collection of all raw variables contained in this fileset.

TimeOffset

(read-write) double TimeOffset

Summary

Get or set the time offset as applied to data files in the fileset. The time offset is specified in seconds.

Example
Dim EvApp
Set EvApp = CreateObject("EchoviewCom.EvApplication")
Dim EvFile: Set EvFile = EvApp.EvFiles(0)
Dim Fileset: Set Fileset = EvFile.Filesets.FindByName("Fileset1")
'Display the fileset's current time offset
Dim num
num = Fileset.TimeOffset
MsgBox "Time offset is: " + cstr(num)
'Set the time offset to 10 seconds and display the fileset's time offset again.
Fileset.TimeOffset = 10
num = Fileset.TimeOffset
MsgBox "Time offset is: " + cstr(num)
EvApp.Quit
        

1Microsoft Office DATE or Microsoft Visual Studio 2005/.NET Framework 2.0 DATE

See also

Scripting with COM objects
EvFilesetsCollection