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

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

パラメータ

stream
レポートレイアウトを保存するStreamオブジェクトを示します。
使用例
/// <summary>
/// SetReportViaStream - デザイナにレポートデザインのストリームを設定する
/// </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;
    }
}
'SetReportViaStream - Designerにレポートデザインのストリームを設定する
'Parameter 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 メンバ
オーバーロード一覧