GrapeCity ActiveReports for .NET 14.0J
Size プロパティ (ARControl)
使用例 

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > ARControl クラス : Size プロパティ
コントロールのサイズを取得または設定します(インチ単位)。
シンタックス
'宣言
 
Public Overridable Property Size As SizeF
public virtual SizeF Size {get; set;}

プロパティ値

System.Drawing.SizeF
使用例
private void detail_Format(object sender, System.EventArgs eArgs)
{
    System.Drawing.SizeF s = new System.Drawing.SizeF();
    s.Width = 2;
    s.Height = 1;
    this.textBox1.Size = s;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Dim s As System.Drawing.SizeF
    s.Width = 2
    s.Height = 1
    Me.TextBox1.Size = s
End Sub
参照

ARControl クラス
ARControl メンバ