DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: Delimiters for Formatter

Property: Delimiters for Formatter

Specifies the characters that separate values or text in the file.

Object.Delimiters
ObjectFormatter
Object with this property
Object.DelimitersString with read and write access
Note  The specified characters are not a string; they are a list of single characters.

The following example shows the settings required for reading the lines listed below:

 XAxis; 1.000.000; 2.000; 301

The Delimiters property interprets a semicolon as a delimiter between two values.

File.Formatter.TrimCharacters = " "
File.Formatter.LineFeeds = vbNewLine
File.Formatter.Delimiters = ";"
File.Formatter.ThousandSeparator = "."
Dim ChannelName : ChannelName = File.GetNextStringValue(eString)
Dim StartValue  : StartValue  = File.GetNextStringValue(eI32)
Dim Increment   : Increment   = File.GetNextStringValue(eI32)
Dim ChannelSize : ChannelSize = File.GetNextStringValue(eI32)
In This Section
Was this information helpful?