Screen.GetBounds 方法

定义

检索显示器的边界。

重载

GetBounds(Control)

检索包含指定控件的最大部分的显示器的边界。

GetBounds(Point)

检索包含指定点的显示器的边界。

GetBounds(Rectangle)

检索包含指定矩形最大部分的显示器的边界。

GetBounds(Control)

检索包含指定控件的最大部分的显示器的边界。

public:
 static System::Drawing::Rectangle GetBounds(System::Windows::Forms::Control ^ ctl);
public static System.Drawing.Rectangle GetBounds (System.Windows.Forms.Control ctl);
static member GetBounds : System.Windows.Forms.Control -> System.Drawing.Rectangle
Public Shared Function GetBounds (ctl As Control) As Rectangle

参数

ctl
Control

要在显示器边界中检索的 Control

返回

Rectangle

指定包含指定控件的显示器边界的 Rectangle。 在各显示器都不包含指定控件的多显示器环境中,将返回与该控件最接近的显示器。

适用于

GetBounds(Point)

检索包含指定点的显示器的边界。

public:
 static System::Drawing::Rectangle GetBounds(System::Drawing::Point pt);
public static System.Drawing.Rectangle GetBounds (System.Drawing.Point pt);
static member GetBounds : System.Drawing.Point -> System.Drawing.Rectangle
Public Shared Function GetBounds (pt As Point) As Rectangle

参数

pt
Point

指定在显示器边界中要检索的坐标的 Point

返回

Rectangle

指定包含指定点的显示器的边界的 Rectangle。 在各显示器都不包含指定点的多显示器环境中,将返回与该点最接近的显示器。

适用于

GetBounds(Rectangle)

检索包含指定矩形最大部分的显示器的边界。

public:
 static System::Drawing::Rectangle GetBounds(System::Drawing::Rectangle rect);
public static System.Drawing.Rectangle GetBounds (System.Drawing.Rectangle rect);
static member GetBounds : System.Drawing.Rectangle -> System.Drawing.Rectangle
Public Shared Function GetBounds (rect As Rectangle) As Rectangle

参数

rect
Rectangle

指定要在显示器边界中检索的区域的 Rectangle

返回

Rectangle

指定包含指定矩形的显示器的边界的 Rectangle。 在各显示器都不包含指定矩形的多显示器环境中,将返回与该矩形最接近的显示器。

适用于