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:
EvFileset methods and properties:
EndTime
GetCalibrationFileName
Name
Notes
SetCalibrationFile
StartTime
TimeOffset
|
Description |
(read-only) DATE EndTime SummaryGet the date1 and time of the last measurement in the fileset. |
|
(read-only) DataFiles[] SummaryGet access to the data files collection of the fileset. |
|
string GetCalibrationFileName() SummaryGet 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. ExampleSee EvCalibration. |
|
(read-write) string Name SummaryAccess or change the name of the fileset. |
|
(read-write) string Notes SummaryAccess or change the notes of the fileset. |
|
SetCalibrationFile(string Name) SummarySpecifies and reads the ECS file. Parameters
ReturnTrue, if successful. ExampleSee EvCalibration. |
|
(read-only) DATE StartTime SummaryGet the date1 and time of the first measurement in the fileset. |
|
(read-write) double TimeOffset SummaryGet or set the time offset as applied to data files in the fileset. The time offset is specified in seconds. ExampleDim 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 |
|
(read-only) Variables[] SummaryGet access to the collection of all raw variables contained in this fileset. |
See also
Scripting with COM objects
EvFilesetsCollection
COM object hierarchy