Exemplo n.º 1
0
 public Offset(LabelLayout label, string s) : base(label, s)
 {
 }
Exemplo n.º 2
0
 public GraphicFile(LabelLayout label, string s) : base(label, s)
 {
 }
Exemplo n.º 3
0
 public QRCode(LabelLayout label, string s) : base(label, s)
 {
 }
Exemplo n.º 4
0
 public Circle(LabelLayout label, string s, Pen pen) : base(label, s)
 {
     this.pen = new Pen(pen.Color, pen.Width);
 }
Exemplo n.º 5
0
 public HText(LabelLayout label, string s, Font f) : base(label, s)
 {
     font = f;
 }
Exemplo n.º 6
0
 public Printable(LabelLayout label, string s)
 {
     this.label = label;
     type       = s.Substring(0, s.IndexOf(':'));
     parse(s.Substring(s.IndexOf(':') + 1).Split(','));
 }