다음을 통해 공유


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입니다. 어떠한 모니터에도 지정된 시각형이 포함되어 있지 않은 여러 디스플레이 환경에서는 사각형에 가장 가까운 모니터가 반환됩니다.

적용 대상