Exemplo n.º 1
0
 private Line(int x1, int y1, int x2, int y2, System.Windows.Forms.Design.Behavior.DragAssistanceManager.LineType type)
 {
     this.x1       = x1;
     this.y1       = y1;
     this.x2       = x2;
     this.y2       = y2;
     this.lineType = type;
 }
Exemplo n.º 2
0
 public Line(int x1, int y1, int x2, int y2)
 {
     this.x1       = x1;
     this.y1       = y1;
     this.x2       = x2;
     this.y2       = y2;
     this.lineType = System.Windows.Forms.Design.Behavior.DragAssistanceManager.LineType.Standard;
 }
 private Line(int x1, int y1, int x2, int y2, System.Windows.Forms.Design.Behavior.DragAssistanceManager.LineType type)
 {
     this.x1 = x1;
     this.y1 = y1;
     this.x2 = x2;
     this.y2 = y2;
     this.lineType = type;
 }
 public Line(int x1, int y1, int x2, int y2)
 {
     this.x1 = x1;
     this.y1 = y1;
     this.x2 = x2;
     this.y2 = y2;
     this.lineType = System.Windows.Forms.Design.Behavior.DragAssistanceManager.LineType.Standard;
 }