WriteLine Method

Writes a string to the internal print buffer, followed by a call to NewLine(1).

C#

public void WriteLine(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 buffer. This method also flushes the data in the internal buffer because it calls the newLine method internally.

Exceptions

PrinterException