GrapeCity ActiveReports for .NET 16.0J
Load(Stream) メソッド
使用例 

GrapeCity.ActiveReports.Document 名前空間 > SectionDocument クラス > Load メソッド : Load(Stream) メソッド
有効なレポートドキュメントを含むStreamオブジェクト。
ストリームからレポートドキュメントをロードします。
シンタックス
'宣言
 
Public Overloads Sub Load( _
   ByVal stream As Stream _
) 
public void Load( 
   Stream stream
)

パラメータ

stream
有効なレポートドキュメントを含むStreamオブジェクト。
使用例
private void Form1_Load(object sender, System.EventArgs e)
{    
    System.IO.MemoryStream strm = new System.IO.MemoryStream();    
    rptMemoryStream rpt = new rptMemoryStream();    
    rpt.Run();    
    rpt.Document.Save(strm);    
    byte[] theBytes = new byte[strm.Length];    
    strm.Read(theBytes, 0, (int)strm.Length);    
    strm.Position =0;    
    viewer1.Document.Load(strm);
}
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load        
    Dim strm As New System.IO.MemoryStream()        
    Dim rpt As New rptMemoryStream()        
    rpt.Run()        
    rpt.Document.Save(strm)        
    Dim theBytes(strm.Length) As Byte        
    strm.Read(theBytes, 0, Int(strm.Length))        
    strm.Position = 0        
    Viewer1.Document.Load(strm)    
End Sub
参照

SectionDocument クラス
SectionDocument メンバ
オーバーロード一覧