System.Drawing.Region.Equals C# (CSharp) Method

Equals() public method

public Equals ( Region region, Graphics g ) : bool
region Region
g Graphics
return bool
        public bool Equals(Region region, Graphics g)
        {
            if (region == null)
                throw new ArgumentNullException ("region");
            if (g == null)
                throw new ArgumentNullException ("g");

            throw new NotImplementedException ();
        }

Usage Example

Beispiel #1
0
		public void ClipTest_2() {
			Region r = new Region(new Rectangle(10, 10, 60, 60));
			t.Graphics.Clip = r;
			Assert.IsTrue(r.Equals(t.Graphics.Clip, t.Graphics));

			Pen redPen   = new Pen(Color.Red, 3);
			Pen greenPen = new Pen(Color.Green, 3);
			// Create points that define curve.
			Point point1 = new Point( 50,  50);
			Point point2 = new Point(100,  25);
			Point point3 = new Point(200,   5);
			Point point4 = new Point(250,  50);
			Point point5 = new Point(300, 100);
			Point point6 = new Point(350, 200);
			Point point7 = new Point(250, 250);
			Point[] curvePoints = {
									  point1,
									  point2,
									  point3,
									  point4,
									  point5,
									  point6,
									  point7
								  };
			// Draw lines between original points to screen.
			t.Graphics.DrawLines(redPen, curvePoints);
			t.Show ();
			Assert.IsTrue(t.PDCompare(TOLERANCE));
		}
All Usage Examples Of System.Drawing.Region::Equals