PowerTools ActiveReports for .NET 9.0J
SetBounds メソッド (ARControl)
使用例 

コントロールの位置とサイズを定義する矩形。
コントロールの境界を指定した矩形に設定します。
構文
'宣言
 
Public Sub SetBounds( _
   ByVal bounds As RectangleF _
) 
public void SetBounds( 
   RectangleF bounds
)

パラメータ

bounds
コントロールの位置とサイズを定義する矩形。

戻り値の型

矩形は、浮動小数点値または単精度浮動小数点値(インチ単位)を使用して定義します。
使用例
private void detail_Format(object sender, System.EventArgs eArgs)
{
    System.Drawing.RectangleF b = new System.Drawing.RectangleF();
    b.X=2;
    b.Y=1;
    b.Width=2;
    b.Height=1;
    this.barcode2.SetBounds(b);
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Dim b As New System.Drawing.RectangleF
    With b
        .X = 2
        .Y = 1
        .Width = 2
        .Height = 0.5
    End With
    Me.Barcode2.SetBounds(b)
End Sub
参照

関連項目

ARControl クラス
ARControl メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.