public Rectangle(string info, int top, int left, int bottom, int right)
 {
     rectInfo = new ShapeInfo(info);
     rectTop = top; rectBottom = bottom;
     rectLeft = left; rectRight = right;
 }
示例#2
0
 public Rectangle(string info, int top, int left, int bottom, int right)
 {
     rectInfo = new ShapeInfo(info);
     rectTop  = top; rectBottom = bottom;
     rectLeft = left; rectRight = right;
 }