Rectangle.Round メソッド
アセンブリ: System.Drawing (system.drawing.dll 内)

Dim value As RectangleF Dim returnValue As Rectangle returnValue = Rectangle.Round(value)
戻り値
Rectangle。

Round メソッドと Truncate メソッドを使用する方法を次のコード例に示します。この例は、Windows フォームでの使用を意図してデザインされています。このコードをフォームに貼り付け、フォームの Paint イベントを処理するときに PaintEventArgs の e を渡して RoundingAndTruncatingRectangles メソッドを呼び出します。
Private Sub RoundingAndTruncatingRectangles( _ ByVal e As PaintEventArgs) ' Construct a new RectangleF. Dim myRectangleF As New RectangleF(30.6F, 30.7F, 40.8F, 100.9F) ' Call the Round method. Dim roundedRectangle As Rectangle = Rectangle.Round(myRectangleF) ' Draw the rounded rectangle in red. Dim redPen As New Pen(Color.Red, 4) e.Graphics.DrawRectangle(redPen, roundedRectangle) ' Call the Truncate method. Dim truncatedRectangle As Rectangle = _ Rectangle.Truncate(myRectangleF) ' Draw the truncated rectangle in white. Dim whitePen As New Pen(Color.White, 4) e.Graphics.DrawRectangle(whitePen, truncatedRectangle) ' Dispose of the custom pens. redPen.Dispose() whitePen.Dispose() End Sub
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(); }
private: void RoundingAndTruncatingRectangles( PaintEventArgs^ e ) { // Construct a new RectangleF. RectangleF myRectangleF = 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 = gcnew Pen( Color::Red,4.0f ); e->Graphics->DrawRectangle( redPen, roundedRectangle ); // Call the Truncate method. Rectangle truncatedRectangle = Rectangle::Truncate( myRectangleF ); // Draw the truncated rectangle in white. Pen^ whitePen = gcnew Pen( Color::White,4.0f ); e->Graphics->DrawRectangle( whitePen, truncatedRectangle ); // Dispose of the custom pens. delete redPen; delete whitePen; }

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からRectangle.Round メソッドを検索する場合は、下記のリンクをクリックしてください。

- Rectangle.Round メソッドのページへのリンク