Exemple #1
0
 public WCFRectangle(WCFPoint location, WCFSize size)
 {
     this.location = location;
     this.size     = size;
 }
Exemple #2
0
 public WCFRectangle(int x, int y, int width, int height)
 {
     this.location = new WCFPoint(x, y);
     this.size     = new WCFSize(width, height);
 }
 public static Size ToNET(WCFSize s)
 {
     return(new Size(s.Width, s.Height));
 }