Esempio n. 1
0
 public InvisibleLabel(string label, PointF position, InvisibleLabel.AnchorPoint anchor)
 {
     this._label      = label;
     this._position   = position;
     this._anchor     = anchor;
     this._bounds     = RectangleF.Empty;
     this._formatting = new StringFormat();
 }
Esempio n. 2
0
 public InvisibleLabel(string label, PointF position, InvisibleLabel.AnchorPoint anchor, StringFormat formatting)
     : this(label, position, anchor)
 {
     this._formatting = formatting;
 }