Example #1
0
 public XRect(XPoint point, XSize size)
 {
     this.m_x      = point.X;
     this.m_y      = point.Y;
     this.m_width  = size.GetWidth();
     this.m_height = size.GetHeight();
 }
Example #2
0
 public XRect(Int32 x, Int32 y, XSize size)
 {
     this.m_x      = x;
     this.m_y      = y;
     this.m_width  = size.GetWidth();
     this.m_height = size.GetHeight();
 }