Screen.GetBounds 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
디스플레이의 범위를 검색합니다.
오버로드
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
매개 변수
반환
지정된 컨트롤을 포함하는 디스플레이의 범위를 지정하는 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
매개 변수
반환
지정된 위치를 포함하는 디스플레이의 범위를 지정하는 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
매개 변수
반환
지정된 사각형을 포함하는 디스플레이의 범위를 지정하는 Rectangle입니다. 어떠한 모니터에도 지정된 시각형이 포함되어 있지 않은 여러 디스플레이 환경에서는 사각형에 가장 가까운 모니터가 반환됩니다.