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

GrapeCity.ActiveReports.Design 名前空間 > Designer クラス > LoadReport メソッド : LoadReport(Stream) メソッド
レポートレイアウトを含むStreamオブジェクトを示します。
指定したストリームからレポートレイアウトをロードします。
シンタックス
'宣言
 
Public Overloads Sub LoadReport( _
   ByVal stream As Stream _
) 
public void LoadReport( 
   Stream stream
)

パラメータ

stream
レポートレイアウトを含むStreamオブジェクトを示します。
使用例
/// <summary>
/// ReportViaStream - レポートデザインストリームをデザイナに設定します。
/// </summary>
/// <param name="memStream">デザイナにメモリストリームを設定します。</param>
public System.IO.Stream ReportViaStream
{
    set
    {
        this.ardMain.LoadReport(value);
    }
    get
    {
        System.IO.Stream _stream = new System.IO.MemoryStream();
        this.ardMain.SaveReport(_stream);
        _stream.Position = 0;
        return _stream;
    }
}
'ReportViaStream - レポートデザインストリームをデザイナに設定します。
'param name="memStream" - デザイナにメモリストリームを設定します。
Public Property ReportViaStream() As System.IO.Stream
    Get
        Dim _stream As New System.IO.MemoryStream()
        Me.ardMain.SaveReport(_stream)
        _stream.Position = 0
        Return _stream
    End Get
    Set(ByVal Value As System.IO.Stream)
        Me.ardMain.LoadReport(Value)
    End Set
End Property
参照

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