|
void | PrintImage (string imageFilePath, int x, int y, int width=0, int height=0, bool insideFormat=false) |
| Prints an image from the connecting device file system to the connected device as a monochrome image. Note: if the image resolution is large(e.g. 1024x768) this method may take a long time to execute or throw an OutOfMemoryError exception. More...
|
|
void | StoreImage (string printerDriveAndFileName, string imageFilePath, int width, int height) |
| Stores the specified image to the connected printer as a monochrome image. The image will be stored on the printer at printerDriveAndFileName with the extension GRF. If a drive letter is not supplied, E will be used as the default (e.g. FILE becomes E:FILE.GRF). If an extension is supplied, it is ignored (E:FILE.BMP becomes E:FILE.GRF). If the image resolution is large (e.g. 1024x768) this method may take a long time to execute or throw an OutOfMemoryError exception. More...
|
|
void | PrintImage (object os_image, int x, int y, int width=0, int height=0, bool insideFormat=false) |
| Prints an image from the connecting device system to the connected device as a monochrome image. Note: if the image resolution is large(e.g. 1024x768) this method may take a long time to execute or throw an OutOfMemoryError exception. More...
|
|
void | StoreImage (string printerDriveAndFileName, object os_image, int width, int height) |
| Stores the specified image to the connected printer as a monochrome image. The image will be stored on the printer at printerDriveAndFileName with the extension GRF. If a drive letter is not supplied, E will be used as the default (e.g. FILE becomes E:FILE.GRF). If an extension is supplied, it is ignored (E:FILE.BMP becomes E:FILE.GRF). If the image resolution is large (e.g. 1024x768) this method may take a long time to execute or throw an OutOfMemoryError exception. More...
|
|
string [] | RetrieveFileNames () |
| Retrieves the names of the files which are stored on the device. This function only works in Link-OS printers. ZebraLink printers may not properly respond to this command. Use: More...
|
|
string [] | RetrieveFileNames (string[] extensions) |
| Retrieves the names of the files which are stored on the device. This method only returns files which have one of the extensions in extensions. This function only works in Link-OS printers. ZebraLink printers may not properly respond to this command. Use: More...
|
|
void | SendFileContents (string filePath) |
| Sends the contents of a file to the device. More...
|
|
IFieldDescription [] | GetVariableFields (string formatString) |
| Returns a list of descriptors of the variable fields in this format. More...
|
|
void | PrintStoredFormat (string formatPathOnPrinter, Dictionary< int, string > vars) |
| Prints a stored format on the printer, filling in the fields specified by the Map. The values of any format variables will be encoded using the default encoding type. See System.Text.Encoding for more information about encoding types. More...
|
|
void | PrintStoredFormat (string formatPathOnPrinter, string[] vars) |
| Prints a stored format on the printer, filling in the fields specified by the array. The values of any format variables will be encoded using the default encoding type. See System.Text.Encoding for more information about encoding types. More...
|
|
byte [] | RetrieveFormatFromPrinter (string formatPathOnPrinter) |
| Retrieves a format from the printer. On a ZPL printer, only .ZPL files are supported. On a CPCL printer, only .FMT and .LBL files are supported. This function will only pull CPCL files on ZebraLink Mobile printers (RW, MZ, QL+). More...
|
|
An interface used to obtain various properties of a Zebra printer.