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

コントロールの左端の座標を取得または設定します(インチ単位)。
構文
'宣言
 
Public Property Left As Single
public float Left {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.