Exemple #1
0
 public Printer(string idAddress)
 {
     this.ipAddress            = idAddress;
     printerSocket             = new Socket(SocketType.Stream, ProtocolType.IP);
     printerSocket.SendTimeout = 1500;
     ArabicReshape.Init();
 }
Exemple #2
0
 public void PrintLineArabic(string text = "")
 {
     PrintLine(ArabicReshape.ProcessString(text));
 }