LinkLabel.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

コントロールの新しい左端位置。

y
Int32

コントロールの新しい右端位置。

width
Int32

コントロールの新しい幅。

height
Int32

コントロールの新しい高さ。

specified
BoundsSpecified

指定された値。 このパラメーターは、ユーザーの意図を反映するために使用します。どの値が変更されたのかを示すためには使用しません。

注釈

クラスを継承すると、この関数をオーバーライドしてサイズ制限を追加できます。 クラスを継承するには、実際にコントロールの境界を変更するために呼び出 base.setBoundsCore す必要があります。

適用対象