Reflection Desktop VBA Guide
Attachmate.Reflection.Objects.Emulation.OpenSystems Library / Attachmate.Reflection.Objects.Emulation.OpenSystems Library / FileTransfer Object / WRQTransferLink Property
In This Topic
    WRQTransferLink Property
    In This Topic
    Returns or specifies the extent to which nonprinting ASCII characters are automatically converted to printing ASCII characters during file transfers.
    Syntax
    expression.WRQTransferLink As TransferLinkOption
    where expression is a variable that represents a FileTransfer Object

    Property Value

    A TransferLinkOption value
    Remarks
    If WRQFastFileTransfer is true, fast file transfers are attempted. If a fast file transfer takes place, the WRQTransferLink property is ignored. This property is relevant only for transfers that use the WRQ/Reflection protocol. The default value is TransferLinkOption.EightBitLink.
    • Converts only a small number of nonprinting ASCII characters. Setting WRQTransferLink to EightBitLink automatically sets WRQStartCharacter to the start-of-text character, represented as Chr$(2), and sets WRQEndCharacter to the end-of-text character, represented as Chr$(3). It also specifies that characters specified with WRQExtraCharacters are ignored.
    • Converts all nonprinting ASCII characters. Using this value may cause a noticeable slowdown in the speed of the transfer. Setting WRQTransferLink to SevenBitLink automatically sets WRQStartCharacter to "(" and WRQEndCharacter to ")". It also specifies that characters specified with WRQExtraCharacters are ignored.
    • Converts all characters that would be converted under EightBitLink, along with additional characters as specified with the WRQExtraCharacters property.
    See Also