Label.SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified) 方法

定义

设置标签的指定边界。

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

控件的新 Left 属性值。

y
Int32

控件的新 Top 属性值。

width
Int32

控件的新 Width 属性值。

height
Int32

控件的新 Height 属性值。

specified
BoundsSpecified

BoundsSpecified 值的按位组合。 对于任何未指定的参数,将使用当前值。

注解

如果将 属性设置为 AutoSizetrue,则将调整标签的大小以适应标签的内容。 如果在调用 SetBoundsCore 方法后将 设置为 AutoSizefalse ,则标签将接收在调用中指定的维度。

适用于