DIAdem Help

Character String Constants

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

Character String Constants

These constants are integrated in VBS and need not be defined before use. Use these constants anywhere in your script to represent the displayed values.

ConstantValueDescription
vbCrChr(13)Carriage return
vbCrLfChr(13)&Chr(10)Carriage return - line feed
vbFormFeedChr(12)Form feed
vbLfChr(10)Line feed
vbNewLineChr(13)&Chr(10)
or Chr(10)
Platform-specific line feed character For Windows, the new line character is  Chr(13) & Chr(10).
vbNullCharChr(0)Character with the value 0
vbNullStringCharacter string with the length nullDoes not correspond to a character string with the length null ("").
vbTabChr(9)Horizontal tabulator
vbVerticalTabChr(11)Vertical tabulator (not advisable with Microsoft Windows)