public GpRect(GpPoint location, GpSize size) { X = location.X; Y = location.Y; Width = size.Width; Height = size.Height; }
public bool Equals(GpSize sz) { return (Width == sz.Width) && (Height == sz.Height); }
public GpSize(GpSize size) { Width = size.Width; Height = size.Height; }
public void GetGpSize(out GpSize size) { size.Width = Width; size.Height = Height; }
public GpPoint(GpSize size) { X = size.Width; Y = size.Height; }
public bool Equals(GpSize sz) { return((Width == sz.Width) && (Height == sz.Height)); }