Esempio n. 1
0
 public GraphicItem()
 {
   tagArea = new Rectangle(0.0, 0.0, 0.0, 0.0);
   tagAngle = 0.0;
   tagFont = new Font();
   tagVisible = false;
   opacity = 1.0;
 }
Esempio n. 2
0
 public GraphicItem(String tag, Rectangle tagArea, Double tagAngle, Font tagFont, Boolean tagVisible, Double opacity)
   : base(tag)
 {
   TagArea = tagArea;
   TagAngle = tagAngle;
   TagFont = tagFont;
   TagVisible = tagVisible;
   Opacity = opacity;
 }
Esempio n. 3
0
 public GraphicItem(Guid guid, String tag)
   : base(guid, tag)
 {
   tagArea = new Rectangle(0.0, 0.0, 0.0, 0.0);
   tagAngle = 0.0;
   tagFont = new Font();
   tagVisible = false;
   opacity = 1.0;
 }