8 references to DrawPie
System.Drawing.Common (3)
System\Drawing\Graphics.cs (3)
830DrawPie(pen, rect.X, rect.Y, rect.Width, rect.Height, startAngle, sweepAngle); 846DrawPie(pen, rect.X, rect.Y, rect.Width, rect.Height, startAngle, sweepAngle); 852DrawPie(pen, (float)x, y, width, height, startAngle, sweepAngle);
System.Drawing.Common.Tests (5)
System\Drawing\GraphicsTests.cs (5)
2231AssertExtensions.Throws<ArgumentNullException>("pen", () => graphics.DrawPie(null, 0f, 0f, 1f, 1f, 0, 90)); 2245AssertExtensions.Throws<ArgumentException>(null, () => graphics.DrawPie(pen, 0f, 0f, 1f, 1f, 0, 90)); 2257AssertExtensions.Throws<ArgumentException>(null, () => graphics.DrawPie(pen, 0f, 0f, 0f, 1f, 0, 90)); 2284Assert.Throws<InvalidOperationException>(() => graphics.DrawPie(pen, 0f, 0f, 1f, 1f, 0, 90)); 2303AssertExtensions.Throws<ArgumentException>(null, () => graphics.DrawPie(pen, 0f, 0f, 1f, 1f, 0, 90));