PowerTools ActiveReports for .NET 9.0J
Overlay メソッド
使用例 

上に重ねるページ。
指定したページオブジェクトをこのページの上に重ねます。
構文
'宣言
 
Public Sub Overlay( _
   ByVal page As Page _
) 
public void Overlay( 
   Page page
)

パラメータ

page
上に重ねるページ。
使用例
private void Form1_Load(object sender, System.EventArgs e)
{
    rptReport rpt = new rptReport();
    rpt.Run();
    rptTemplate rpt2 = new rptTemplate();
    rpt2.Run();
    viewer1.Document = rpt.Document;
    for(int i = 0; i < rpt.Document.Pages.Count; i++)
    {
        rpt.Document.Pages[i].Overlay(rpt2.Document.Pages[0]);
    }
}
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Dim rpt As New rptReport()
    rpt.Run()
    Dim rpt2 As New rptTemplate()
    rpt2.Run()
    Viewer1.Document = rpt.Document
    For i = 0 To rpt.Document.Pages.Count - 1
        rpt.Document.Pages(i).Overlay(rpt2.Document.Pages(0))
    Next
End Sub
参照

関連項目

Page クラス
Page メンバ

基本操作

ページテンプレートの適用

 

 


©2003-2015 GrapeCity inc. All rights reserved.