PowerTools ActiveReports for .NET 9.0J
Top プロパティ (ARControl)
使用例 

セクション内のコントロールの上端の、セクションに対する相対的な座標を取得または設定します(インチ単位)。
構文
'宣言
 
Public Property Top As Single
public float Top {get; set;}

プロパティ値

浮動小数点値または単精度浮動小数点値(インチ単位)。
解説
注意:コントロールを含むセクションは必ず、位置に合わせてサイズ変更してください。そうしないと、コントロールは見えない領域に描画される場合があります。
使用例
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.textBox1.Height = 1;
    this.textBox1.Width = 2;
    this.textBox1.Left = 2;
    this.textBox1.Top = 0;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    With Me.TextBox1
        .Height = 1
        .Width = 2
        .Left = 2
        .Top = 0
    End With
End Sub
参照

関連項目

ARControl クラス
ARControl メンバ

 

 


©2003-2015 GrapeCity inc. All rights reserved.