void PrintBytes(string, int[], bool)
Prints bytes
Security
Trust Level Required: Full Trust
Parameters
Name | Description |
deviceName |
string The name of the device. |
printDataBytes |
int[] The data to print. |
isFragment |
(Optional) bool True if the data is a fragment. Defaults to false. |
Remarks
Each printer may have a different set of commands to be read in bytes. A list of printers that are supported by KioWare can be found using this tool.
Examples
const devName = 'rawwinprinter';
var alphabet = [];
for(var i = 0; i < 26; i++){
alphabet[i] = i + 65;
}
KioRawWinPrinter.PrintBytes(devName, alphabet);
Requirements
KioWare for Windows version 8.7 or greater.