Control.UpdateBounds 메서드

정의

컨트롤의 범위를 업데이트합니다.

오버로드

UpdateBounds()

현재 크기와 위치를 사용하여 컨트롤의 범위를 업데이트합니다.

UpdateBounds(Int32, Int32, Int32, Int32)

지정된 크기와 위치를 사용하여 컨트롤의 범위를 업데이트합니다.

UpdateBounds(Int32, Int32, Int32, Int32, Int32, Int32)

지정된 크기, 위치 및 클라이언트 크기를 사용하여 컨트롤의 범위를 업데이트합니다.

UpdateBounds()

현재 크기와 위치를 사용하여 컨트롤의 범위를 업데이트합니다.

protected:
 void UpdateBounds();
protected public:
 void UpdateBounds();
protected void UpdateBounds ();
protected internal void UpdateBounds ();
member this.UpdateBounds : unit -> unit
Protected Sub UpdateBounds ()
Protected Friend Sub UpdateBounds ()

설명

컨트롤의 새 Size 가 이전 SizeSizeChanged 과 다른 경우 이벤트가 발생합니다. 마찬가지로 컨트롤의 가 Location 변경 LocationChanged 되면 이벤트가 발생합니다.

추가 정보

적용 대상

UpdateBounds(Int32, Int32, Int32, Int32)

지정된 크기와 위치를 사용하여 컨트롤의 범위를 업데이트합니다.

protected:
 void UpdateBounds(int x, int y, int width, int height);
protected void UpdateBounds (int x, int y, int width, int height);
member this.UpdateBounds : int * int * int * int -> unit
Protected Sub UpdateBounds (x As Integer, y As Integer, width As Integer, height As Integer)

매개 변수

x
Int32

컨트롤의 X 좌표입니다.

y
Int32

컨트롤의 Y 좌표입니다.

width
Int32

컨트롤의 Width입니다.

height
Int32

컨트롤의 Height입니다.

설명

컨트롤의 새 Size 가 이전 SizeSizeChanged 과 다른 경우 이벤트가 발생합니다. 마찬가지로 는 컨트롤 변경 LocationChanged 의 이며 Location 이벤트가 발생합니다.

추가 정보

적용 대상

UpdateBounds(Int32, Int32, Int32, Int32, Int32, Int32)

지정된 크기, 위치 및 클라이언트 크기를 사용하여 컨트롤의 범위를 업데이트합니다.

protected:
 void UpdateBounds(int x, int y, int width, int height, int clientWidth, int clientHeight);
protected void UpdateBounds (int x, int y, int width, int height, int clientWidth, int clientHeight);
member this.UpdateBounds : int * int * int * int * int * int -> unit
Protected Sub UpdateBounds (x As Integer, y As Integer, width As Integer, height As Integer, clientWidth As Integer, clientHeight As Integer)

매개 변수

x
Int32

컨트롤의 X 좌표입니다.

y
Int32

컨트롤의 Y 좌표입니다.

width
Int32

컨트롤의 Width입니다.

height
Int32

컨트롤의 Height입니다.

clientWidth
Int32

컨트롤의 클라이언트 Width입니다.

clientHeight
Int32

컨트롤의 클라이언트 Height입니다.

설명

컨트롤의 새 Size 가 이전 SizeSizeChanged 과 다른 경우 이벤트가 발생합니다. 마찬가지로 컨트롤의 가 Location 변경 LocationChanged 되면 이벤트가 발생합니다.

추가 정보

적용 대상