GrapeCity.ActiveReports.v11 アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > ARControl クラス : Location プロパティ |
注意: セクションのサイズは、必ずコントロールの位置を含む大きさでなければなりません。そうでなければ、そのコントロールは見えない位置に配置されることになります。
private void detail_Format(object sender, System.EventArgs eArgs) { System.Drawing.PointF p = new System.Drawing.PointF(); p.X = 0.5f; p.Y = 0.5f; this.textBox1.Location = p; }
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Dim p As System.Drawing.PointF p.X = 0.5 p.Y = 0.5 Me.TextBox1.Location = p End Sub