Exemplo n.º 1
1
 public Texte(string message, Point position, Color couleur)
 {
     this.message = message;
     this.position = position;
     this.couleur = couleur;
     this.police = Fonte.Arial15;
 }
Exemplo n.º 2
0
 public Texte(string message, Point position, Color couleur, Fonte police)
 {
     this.message  = message;
     this.position = position;
     this.couleur  = couleur;
     this.police   = police;
 }
Exemplo n.º 3
0
 public Texte(string message, Point position, Color couleur)
 {
     this.message  = message;
     this.position = position;
     this.couleur  = couleur;
     this.police   = Fonte.Arial15;
 }
Exemplo n.º 4
0
 public Texte(string message, Point position)
 {
     this.message  = message;
     this.position = position;
     this.couleur  = Structure.Color.White;
     this.police   = Fonte.Arial15;
 }
Exemplo n.º 5
-8
 public Texte(string message, Point position)
 {
     this.message = message;
     this.position = position;
     this.couleur = Structure.Color.White;
     this.police = Fonte.Arial15;
 }
Exemplo n.º 6
-14
 public Texte(string message, Point position, Color couleur, Fonte police)
 {
     this.message = message;
     this.position = position;
     this.couleur = couleur;
     this.police = police;
 }