Method: SkipValues for File
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Methods > Method: SkipValues for File
Method: SkipValues for File
Skips several values in a line.
iSkipValues = Object.SkipValues(Number)
| Object | File Object with this method |
| Number | LongInteger Specifies the number of values to skip. |
| iSkipValues | LongInteger 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)