Size.Round(SizeF) Metodo

Definizione

Converte la struttura SizeF specificata in una struttura Size, arrotondando i valori della struttura SizeF agli interi più vicini.

C#
public static System.Drawing.Size Round (System.Drawing.SizeF value);

Parametri

value
SizeF

Struttura SizeF da convertire.

Restituisce

Struttura Size in cui questo metodo esegue la conversione.

Esempio

Nell'esempio di codice seguente viene illustrato come usare metodi e statici Round per convertire un SizeF oggetto in un oggetto Size.Truncate Questo esempio è progettato per essere usato con Windows Forms. Per eseguire questo esempio, incollarlo in una maschera contenente due Label oggetti denominati Label1 e Label2, quindi chiamare questo metodo dal costruttore del modulo.

C#
private void TruncateAndRoundSizes()
{

    // Create a SizeF.
    SizeF theSize = new SizeF(75.9F, 75.9F);

    // Round the Size.
    Size roundedSize = Size.Round(theSize);

    // Truncate the Size.
    Size truncatedSize = Size.Truncate(theSize);

    //Print out the values on two labels.
    Label1.Text = "Rounded size = "+roundedSize.ToString();
    Label2.Text = "Truncated size = "+truncatedSize.ToString();
}

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