Vcl.ActnCtrls.TCustomComboControl.SetBounds
Delphi
procedure SetBounds(ALeft: Integer; ATop: Integer; AWidth: Integer;
AHeight: Integer); override;
C++
virtual void __fastcall SetBounds(int ALeft, int ATop, int AWidth, int AHeight);
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
procedure function |
public | Vcl.ActnCtrls.pas Vcl.ActnCtrls.hpp |
Vcl.ActnCtrls | TCustomComboControl |
説明
Left、Top、Width、および Height プロパティを、すべて一度に設定します。
SetBounds を使用すると、コンポーネントの境界に関係するプロパティを、すべて一度に変更することができます。同等の効果が、Left、Top、Width、および Height の各プロパティを個別に設定しても得られますが、SetBounds は 4 つのプロパティを一度に変更するため、各プロパティの変更の間にコントロールが再描画されないことが保証されます。
Left、Top、Width、および Height の各プロパティを、それぞれ対応する、ALeft
、ATop
、AWidth
、および AHeight
の各パラメータの値で設定します。
関連項目
- Vcl.Controls.TControl.Height
- Vcl.Controls.TControl.Left
- Vcl.Controls.TControl.Top
- Vcl.Controls.TControl.Width
- Vcl.Controls.TControl.BoundsRect
- Vcl.Controls.TControl.AutoSize
- Vcl.Controls.TControl.Constraints
- Vcl.Controls.TControl.OnCanResize
- Vcl.Controls.TControl.OnConstrainedResize
- Vcl.Controls.TControl.OnResize
- Vcl.Controls.TControl.UpdateBoundsRect