ArcPadScripting
String

String constants

Constant Value Description
apFormFeed Chr(12) Form feed; not useful in Microsoft Windows.
apVerticalTab Chr(11) Vertical tab; not useful in Microsoft Windows.
apTab Chr(9) Horizontal tab.
apNewLine Chr(13) & Chr(10) or Chr(10) Platform-specific newline character; whatever is appropriate for the platform.
apCrLf Chr(13) & Chr(10) Carriage return?linefeed combination.
apLf Chr(10) Line feed.
apCr Chr(13) Carriage return.
apNullString String having value 0 Not the same as a zero-length string ("").
apNullChar Chr(0) Character having the value 0.

Remarks
Use these constants when formatting strings in your scripts.