Rectangle.Round(RectangleF) Metodo

Definizione

Converte l'oggetto RectangleF specificato in un oggetto Rectangle, arrotondando i valori RectangleF agli interi più vicini.

C#
public static System.Drawing.Rectangle Round (System.Drawing.RectangleF value);

Parametri

value
RectangleF

Oggetto RectangleF da convertire.

Restituisce

Valore intero arrotondato dell'oggetto Rectangle.

Esempio

Nell'esempio di codice seguente viene illustrato come usare i Round metodi e Truncate . Questo esempio è progettato per l'uso con un Windows Form. Incollare questo codice in un modulo e chiamare il metodo durante la RoundingAndTruncatingRectangles gestione dell'evento del Paint modulo, passando e come PaintEventArgs.

C#
private void RoundingAndTruncatingRectangles(PaintEventArgs e)
{

    // Construct a new RectangleF.
    RectangleF myRectangleF = 
        new RectangleF(30.6F, 30.7F, 40.8F, 100.9F);

    // Call the Round method.
    Rectangle roundedRectangle = Rectangle.Round(myRectangleF);

    // Draw the rounded rectangle in red.
    Pen redPen = new Pen(Color.Red, 4);
    e.Graphics.DrawRectangle(redPen, roundedRectangle);

    // Call the Truncate method.
    Rectangle truncatedRectangle = Rectangle.Truncate(myRectangleF);

    // Draw the truncated rectangle in white.
    Pen whitePen = new Pen(Color.White, 4);
    e.Graphics.DrawRectangle(whitePen, truncatedRectangle);

    // Dispose of the custom pens.
    redPen.Dispose();
    whitePen.Dispose();
}

Si applica a

Prodotto Versioni
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.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, 2.1