ReceiptPrintJob.PrintLine Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
PrintLine() |
Adds an instruction to the print job to print a newline character on the receipt printer station. |
PrintLine(String) |
Adds an instruction to the print job to print a line of text on the receipt printer station. |
PrintLine()
Adds an instruction to the print job to print a newline character on the receipt printer station.
public:
virtual void PrintLine() = PrintLine;
/// [Windows.Foundation.Metadata.Overload("PrintNewline")]
void PrintLine();
[Windows.Foundation.Metadata.Overload("PrintNewline")]
public void PrintLine();
function printLine()
Public Sub PrintLine ()
Implements
- Attributes
See also
Applies to
PrintLine(String)
Adds an instruction to the print job to print a line of text on the receipt printer station.
public:
virtual void PrintLine(Platform::String ^ data) = PrintLine;
/// [Windows.Foundation.Metadata.Overload("PrintLine")]
void PrintLine(winrt::hstring const& data);
[Windows.Foundation.Metadata.Overload("PrintLine")]
public void PrintLine(string data);
function printLine(data)
Public Sub PrintLine (data As String)
Parameters
- data
-
String
Platform::String
winrt::hstring
The line of text to print.
Implements
- Attributes