Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.OpenSystems Library / Attachmate.Reflection.Objects.Emulation.OpenSystems Library / FileTransfer Object / PCRecordSeparator Property
In This Topic
    PCRecordSeparator Property
    In This Topic
    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
    expression.PCRecordSeparator As String
    where expression is a variable that represents a FileTransfer Object
    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