Printing Objects

The print interface uses two enums, one for Bitmap types: Android, iOS, .NET, and another for events: PrintingProcess.

By listening to the PrintingEvent, the application will receive information regarding the printing process.

Copy
  /// <summary>
  /// Set new font for printer
  /// </summary>
  NewFontSet,
  /// <summary>
  /// Text message sent to be printed
  /// </summary>
  SendTextToPrinter,
  /// <summary>
  /// Bitmap sent to be printed
  /// </summary>
  SendBitmapToPrinter,
  /// <summary>
  /// Receipt sent to be printed
  /// </summary>
  SendReceiptToPrinter,
  /// <summary>
  /// Check if bitmap type is right for the printer
  /// </summary>
  CheckBitmapData,
  /// <summary>
  /// Starting the printing process
  /// </summary>
  StartPrintingProcess,
  /// <summary>
  /// Error thrown when printing
  /// </summary>
  ErrorWhenPrinting,
  /// <summary>
  /// Successful printing process ended
  /// </summary>
  FinishedPrinting