Property: ThousandSeparator for Formatter
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Properties > Property: ThousandSeparator for Formatter
Property: ThousandSeparator for Formatter
Specifies the thousands separator, which is ignored when values are read in.
Object.ThousandSeparator
| Object | Formatter Object with this property |
| Object.ThousandSeparator | String with read and write access |
The following example shows the settings required for reading the lines listed below:
XAxis; 1.000.000; 2.000; 301¶
The ThousandSeparator property ignores the point when values are read.
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)