Write Method

Writes a string to the internal print buffer of the class.

Write Method (string)

Writes a string to the internal print buffer.

C#

public void Write(string str);

Parameters

Parameter Description
string str A string to be written to the internal print buffer.

Remarks

The string is converted to ASCII character data before writing to the internal buffer of the class. The contents of the internal buffer are sent to the printer through the transport medium when the buffer is full or when a call to Flush is made.

Exceptions

PrinterException