Lue englanniksi Muokkaa

Jaa


Region.GetBounds(Graphics) Method

Definition

Gets a RectangleF structure that represents a rectangle that bounds this Region on the drawing surface of a Graphics object.

C#
public System.Drawing.RectangleF GetBounds(System.Drawing.Graphics g);

Parameters

g
Graphics

The Graphics on which this Region is drawn.

Returns

A RectangleF structure that represents the bounding rectangle for this Region on the specified drawing surface.

Exceptions

Examples

The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler. The code performs the following actions:

  • Creates a GraphicsPath and adds an ellipse to it.

  • Fills the path with blue and draws it to the screen.

  • Creates a region that uses the GraphicsPath.

  • Gets the nonexcluded area of the region when combined with the second rectangle.

  • Gets the bounding rectangle for the region and draws it to the screen in red.

C#
public void GetBoundsExample(PaintEventArgs e)
{
             
    // Create a GraphicsPath and add an ellipse to it.
    GraphicsPath myPath = new GraphicsPath();
    Rectangle ellipseRect = new Rectangle(20, 20, 100, 100);
    myPath.AddEllipse(ellipseRect);
             
    // Fill the path with blue and draw it to the screen.
    SolidBrush myBrush = new SolidBrush(Color.Blue);
    e.Graphics.FillPath(myBrush, myPath);
             
    // Create a region using the GraphicsPath.
    Region myRegion = new Region(myPath);
             
    // Get the bounding rectangle for myRegion and draw it to the
             
    // screen in Red.
    RectangleF boundsRect = myRegion.GetBounds(e.Graphics);
    e.Graphics.DrawRectangle(Pens.Red, Rectangle.Round(boundsRect));
}

Remarks

The current transformation of the graphics context is used to compute the region interior on the drawing surface. The bounding rectangle is not always the smallest possible bounding rectangle depending on the current transformation.

Applies to

Tuote Versiot
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10