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

レポートレイアウトを含むStreamオブジェクトを示します。
指定したストリームからレポートレイアウトをロードします。
構文
'宣言
 
Public Overloads Sub LoadReport( _
   ByVal stream As Stream _
) 
public void LoadReport( 
   Stream stream
)

パラメータ

stream
レポートレイアウトを含むStreamオブジェクトを示します。
使用例
/// <summary>
/// ReportViaStream - レポートデザインストリームをDesignerに設定します。
/// </summary>
/// <param name="memStream">Designerにメモリストリームを設定します。</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 - レポートデザインストリームをDesignerに設定します。
'param name="memStream" - Designerにメモリストリームを設定します。
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 メンバ
オーバーロード一覧

 

 


©2003-2015 GrapeCity inc. All rights reserved.