PrintRaw

This command will send a byte stream to the selected printer. A typical example would be sending escape sequences.

Group: Printer Extensions


Syntax: Printer.PrintRaw(vData)

vData   (Variant) is the byte stream or string that is to be sent to the printer. If the passed value is an actual byte array it will be sent to the printer unmodified. If it is not a byte array the server will convert it to an SBCS string and send that.

Example:

Dim sData As String

sData = "Print Me"

Printer.PrintRaw(sData)

Converts “Print Me” to Unicode and sends it

Supported Versions:       RFgen 4.0 and newer.