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