Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.OpenSystems Library / Attachmate.Reflection.Objects.Emulation.OpenSystems Library / FileTransfer Object / HostRecordSeparator Property
In This Topic
    HostRecordSeparator Property
    In This Topic
    Returns or specifies the character to use as a record separator in the PC file when an ASCII files is transferred from the host.
    Syntax
    expression.HostRecordSeparator As String
    where expression is a variable that represents a FileTransfer Object
    Remarks
    For example, this statement specifies a linefeed as the record separator:

    FileTransfer.HostRecordSeparator = "\n"

    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:

    "\r\n"

    This property is only relevant when the UseHostRecordSeparator property is true. The string cannot be more than 259 characters long.
    See Also