Programming with Reflection
PCRecordSeparator property
Syntax |
|
Works with |
|
Data type |
Returns (first syntax line) or specifies (second syntax line) the character that is interpreted as a record separator in a PC ASCII file when it is transferred to the host. This property is only relevant when the UsePCRecordSeparator property is True.
For example, this statement specifies that a LF in the PC file should be interpreted as the record separator:
Session.PCRecordSeparator = Chr$(rcLF)
This property only applies to ASCII file transfers using the WRQ/Reflection protocol.
The default value is a carriage return and linefeed, which is represented as:
Chr$(rcCR) & Chr$(rcLF)
Click here to see a list of character constants you can use for other non-printing characters.
The string cannot be more than 259 characters long.