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

コントロールの高さを取得または設定します(インチ単位)。デザイン時の最大値は、10,000インチです(実行時にCanGrowプロパティによって自動的に伸長した場合は除きます)。
構文
'宣言
 
Public Property Height As Single
public float Height {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.