COM object EvFileset

EvApplication > EvFileCollection > EvFile > EvFilesetsCollection > EvFileset

 

View the COM map and the COM summary.

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.

EvFileset collections:

DataFiles
Variables

EvFileset methods and properties:

EndTime
GetCalibrationFileName
Name
Notes
SetCalibrationFile
StartTime
TimeOffset

 

Description

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.

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.

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.

SetCalibrationFile

SetCalibrationFile(string Name)

Summary

Specifies and reads the ECS file.

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

True, if successful.

Example

See EvCalibration.

StartTime

(read-only) DATE StartTime

Summary

Get the date1 and time of the first measurement in the 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


Variables

(read-only) Variables[]

Summary

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

1Microsoft Office DATE

See also

Scripting with COM objects
EvFilesetsCollection
COM object hierarchy