5 references to GetBounds
System.Drawing.Common (1)
System\Drawing\Drawing2D\GraphicsPath.cs (1)
816public RectangleF GetBounds() => GetBounds(null);
System.Drawing.Common.Tests (4)
System\Drawing\Drawing2D\GraphicsPathTests.cs (4)
1130Assert.Equal(rectangle, gp.GetBounds(null)); 1131Assert.Equal(rectangle, gp.GetBounds(matrix)); 1731gp.GetBounds(null).Should().BeApproximately(expectedBounds, Delta); 1732gp.GetBounds(matrix).Should().BeApproximately(expectedBounds, Delta);