Rectangle.Truncate(RectangleF) 方法

定義

藉由截斷 RectangleF 值,來將指定的 RectangleF 轉換為 Rectangle

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

參數

value
RectangleF

要轉換的 RectangleF

傳回

Rectangle截斷值。

範例

下列程式代碼範例示範如何使用 RoundTruncate 方法。 此範例是設計來搭配 Windows Form 使用。 將此程式代碼貼到表單中,並在處理表單的事件Paint時呼叫 RoundingAndTruncatingRectangles 方法,並傳遞ePaintEventArgs

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();
}

適用於

產品 版本
.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