Exemplo n.º 1
0
 public HPEventArgs(PrinterOps Op, int SubOp, int Item, string Font, int CharSize, int Page, int KbType, string Message)
 {
     this.Op       = Op;
     this.SubOp    = SubOp;
     this.Item     = Item;
     this.Font     = Font;
     this.CharSize = CharSize;
     this.Page     = Page;
     this.KbType   = KbType;
     this.Message  = Message;
 }
Exemplo n.º 2
0
 public string TranslateOperation(PrinterOps Op, int SubOp)
 {
     return(OperationName(Op, SubOp));
 }
Exemplo n.º 3
0
 public HPEventArgs(PrinterOps Op, int SubOp, int Item, string Message)
     : this(Op, SubOp, Item, string.Empty, 0, 0, 0, Message)
 {
 }
Exemplo n.º 4
0
 public HPEventArgs(PrinterOps Op, string Message)
     : this(Op, 0, 0, string.Empty, 0, 0, 0, Message)
 {
 }
Exemplo n.º 5
0
 public HPEventArgs(PrinterOps Op, int SubOp)
     : this(Op, SubOp, 0, string.Empty, 0, 0, 0, string.Empty)
 {
 }