DIAdem Help

Method: SkipValues for File

  • Updated2024-09-12
  • 1 minute(s) read

Method: SkipValues for File

Skips several values in a line.

iSkipValues = Object.SkipValues(Number)
ObjectFile
Object with this method
NumberLongInteger
Specifies the number of values to skip.
iSkipValuesLongInteger
Receives the number of values that have been skipped.

The following example reads a channel name from a file line and skips the subsequent three texts:

Dim ChannelName
ChannelName = File.GetNextStringValue(eString)
Call File.SkipValues(3)

Log in to get a better experience