Ejemplo n.º 1
0
 public GpRect(GpPoint location,
               GpSize size)
 {
     X      = location.X;
     Y      = location.Y;
     Width  = size.Width;
     Height = size.Height;
 }
Ejemplo n.º 2
0
 public bool Equals(GpSize sz) 
 {
     return (Width == sz.Width) && (Height == sz.Height);
 }
Ejemplo n.º 3
0
 public GpSize(GpSize size)
 {
     Width = size.Width;
     Height = size.Height;
 }
Ejemplo n.º 4
0
 public void GetGpSize(out GpSize size)
 {
     size.Width = Width;
     size.Height = Height;
 }
Ejemplo n.º 5
0
 public GpRect(GpPoint location,
      GpSize size)
 {
     X = location.X;
     Y = location.Y;
     Width = size.Width;
     Height = size.Height;
 }
Ejemplo n.º 6
0
 public GpPoint(GpSize size)
 {
     X = size.Width;
     Y = size.Height;
 }
Ejemplo n.º 7
0
 public GpSize(GpSize size)
 {
     Width  = size.Width;
     Height = size.Height;
 }
Ejemplo n.º 8
0
 public void GetGpSize(out GpSize size)
 {
     size.Width  = Width;
     size.Height = Height;
 }
Ejemplo n.º 9
0
 public GpPoint(GpSize size)
 {
     X = size.Width;
     Y = size.Height;
 }
Ejemplo n.º 10
0
 public bool Equals(GpSize sz)
 {
     return((Width == sz.Width) && (Height == sz.Height));
 }