Ejemplo n.º 1
0
 public GraphText(int x, int y, string text)
 {
     X    = x;
     Y    = y;
     Text = text;
     _pos = new PieceOfText(new Font("Courier", 32), Text);
 }
Ejemplo n.º 2
0
 public GraphText(double x, double y, string text)
 {
     X    = x;
     Y    = y;
     Text = text;
     _pos = new PieceOfText(new Font("Verdana", 32), text);
 }
Ejemplo n.º 3
0
 public GraphText(double x, double y, string text) {
     X = x;
     Y = y;
     Text = text;
     _pos = new PieceOfText(new Font("Verdana", 32), text);
 }
Ejemplo n.º 4
0
 public GraphText(int x, int y, string text) {
     X = x;
     Y = y;
     Text = text;
     _pos = new PieceOfText(new Font("Courier", 32), Text);
 }