InfoConnect for Airlines VBA Guide
PCRecordSeparator Property
Returns or specifies the character that is interpreted as a record separator in a PC ASCII file when it is transferred to the host.
Syntax
Object.PCRecordSeparator As String
Remarks
This property is only relevant when the UsePCRecordSeparator property is true. For example, this statement specifies that a line feed (LF) should be interpreted as the record separator:

FileTransfer.PCRecordSeparator = "\n".

This property only applies to ASCII file transfers using the WRQ/Reflection protocol.

The default value is a carriage return and line feed, represented as follows:

"\r\n".

The string cannot be more than 259 characters long.

See Also