Rectangle.FromLTRB(Int32, Int32, Int32, Int32) 方法

定义

创建一个具有指定边缘位置的 Rectangle 结构。

public:
 static System::Drawing::Rectangle FromLTRB(int left, int top, int right, int bottom);
public static System.Drawing.Rectangle FromLTRB (int left, int top, int right, int bottom);
static member FromLTRB : int * int * int * int -> System.Drawing.Rectangle
Public Shared Function FromLTRB (left As Integer, top As Integer, right As Integer, bottom As Integer) As Rectangle

参数

left
Int32

Rectangle 结构左上角的 x 坐标。

top
Int32

Rectangle 结构左上角的 y 坐标。

right
Int32

Rectangle 结构右下角的 x 坐标。

bottom
Int32

Rectangle 结构右下角的 y 坐标。

返回

此方法创建的新 Rectangle

示例

下面的代码示例演示如何使用 FromLTRB 方法创建矩形。 此示例旨在与 Windows 窗体一起使用。 将此代码粘贴到窗体中, CreateARectangleFromLTRB 并在处理窗体 Paint 的事件时调用 方法,作为 ePaintEventArgs传递。

private:
   void CreateARectangleFromLTRB( PaintEventArgs^ e )
   {
      Rectangle myRectangle = Rectangle::FromLTRB( 40, 40, 140, 240 );
      e->Graphics->DrawRectangle( SystemPens::ControlText, myRectangle );
   }
private void CreateARectangleFromLTRB(PaintEventArgs e)
{
    Rectangle myRectangle = Rectangle.FromLTRB(40, 40, 140, 240);
    e.Graphics.DrawRectangle(SystemPens.ControlText, myRectangle);
}
Private Sub CreateARectangleFromLTRB(ByVal e As PaintEventArgs)
    Dim myRectangle As Rectangle = Rectangle.FromLTRB(40, 40, 140, 240)
    e.Graphics.DrawRectangle(SystemPens.ControlText, myRectangle)
End Sub

注解

此方法创建 Rectangle 具有指定左上角和右下角的 。

适用于