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

GrapeCity.ActiveReports アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > PageBreak クラス : Location プロパティ
コントロールの位置を取得または設定します(インチ単位)。
シンタックス
'宣言
 
Public Overrides NotOverridable Property Location As PointF
public override PointF Location {get; set;}
使用例
private void detail_Format(object sender, System.EventArgs e)
{
    System.Drawing.PointF p = new System.Drawing.PointF();  
    p.X = 0f;  
    p.Y = 5f;

    if(this.detail.Height > 5)
    {
        this.pageBreak1.Enabled = true;
        this.pageBreak1.Location = p;
    }    
}
Private Sub Detail1_Format(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Dim p As System.Drawing.PointF
   p.X = 0
   p.Y = 5
   If Me.Detail1.Height > 5 Then
      Me.PageBreak1.Enabled = True
      Me.PageBreak1.Location = p
   End If
End Sub
参照

PageBreak クラス
PageBreak メンバ