MESCIUS SPREAD for Windows Forms 15.0J
SetBounds(Rectangle) メソッド
使用例 

コントロールの境界を提供するRectangleオブジェクト
指定した境界矩形オブジェクトの位置とサイズを使用して要素の境界を設定します。
構文
'宣言
 
Public Overloads Overridable Sub SetBounds( _
   ByVal rectInput As Rectangle _
) 
public virtual void SetBounds( 
   Rectangle rectInput
)

パラメータ

rectInput
コントロールの境界を提供するRectangleオブジェクト
解説
Rectangle構造体の詳細については、Microsoft .NET Frameworkリファレンスを参照してください。
使用例
次のサンプルコードでは、このメンバを使用して、コントロールの境界をRectangle構造体を使用して指定した位置とサイズに設定しています。
control.Text = "NO SMOKING";
control.ForeColor = Color.Red;
control.TextOrientation = FarPoint.Win.TextOrientation.TextVertical;
control.Picture = Image.FromFile(Application.StartupPath + "\\smokes.bmp", true)
control.AlignText = FarPoint.Win.TextAlign.TextLeftPictRight;
control.AlignHorz = FarPoint.Win.HorizontalAlignment.Center;
Rectangle rect = new Rectangle(10,50,200,150);
control.SetBounds(rect);
control.Text = "NO SMOKING"
control.ForeColor = Color.Red
control.TextOrientation = FarPoint.Win.TextOrientation.TextVertical
control.Picture = Image.FromFile(Application.StartupPath & "\smokes.bmp", True)
control.AlignText = FarPoint.Win.TextAlign.TextLeftPictRight
control.AlignHorz = FarPoint.Win.HorizontalAlignment.Center
control.SetBounds(10, 50, 300, 250)
参照

ElementControl クラス
ElementControl メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.