LinkLabel.SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 컨트롤의 범위를 설정합니다.
protected:
override void SetBoundsCore(int x, int y, int width, int height, System::Windows::Forms::BoundsSpecified specified);
protected override void SetBoundsCore (int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified);
override this.SetBoundsCore : int * int * int * int * System.Windows.Forms.BoundsSpecified -> unit
Protected Overrides Sub SetBoundsCore (x As Integer, y As Integer, width As Integer, height As Integer, specified As BoundsSpecified)
매개 변수
- x
- Int32
컨트롤의 새 왼쪽입니다.
- y
- Int32
컨트롤의 새 오른쪽입니다.
- width
- Int32
컨트롤의 새 너비입니다.
- height
- Int32
컨트롤의 새 높이입니다.
- specified
- BoundsSpecified
지정된 값입니다. 이 매개 변수는 어떤 값이 변경되었는지가 아니라 사용자의 의도를 반영합니다.
설명
클래스를 상속하면 크기 제한을 추가하기 위해 이 함수를 재정의할 수 있습니다. 클래스를 상속하면 실제로 컨트롤의 경계가 변경되도록 호출 base.setBoundsCore
해야 합니다.