示例#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;
 }
示例#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;
 }
示例#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;
 }