ActiveReports Developer 7
Save(Stream,RdfFormat) Method
See Also  Example
GrapeCity.ActiveReports.Document.v7 Assembly > GrapeCity.ActiveReports.Document Namespace > SectionDocument Class > Save Method : Save(Stream,RdfFormat) Method

stream
Specifies the Stream object where the document should be saved.
fmt
Uses the RdfFormat enumeration to specify the file format in which to save the report.

Glossary Item Box

Saves the Document content to a stream in the specified file format.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub Save( _
   ByVal stream As System.IO.Stream, _
   ByVal fmt As RdfFormat _
) 
C# 
public void Save( 
   System.IO.Stream stream,
   RdfFormat fmt
)

Parameters

stream
Specifies the Stream object where the document should be saved.
fmt
Uses the RdfFormat enumeration to specify the file format in which to save the report.

Example

C#Copy Code
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, GrapeCity.ActiveReports.Document.Section.RdfFormat.AR20);    
    byte[] theBytes = new byte[strm.Length];    
    strm.Read(theBytes, 0, (int)strm.Length);    
    strm.Position =0;    
}
Visual BasicCopy Code
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, GrapeCity.ActiveReports.Document.Section.RdfFormat.AR20)        
    Dim theBytes(strm.Length) As Byte        
    strm.Read(theBytes, 0, Int(strm.Length))        
    strm.Position = 0     
End Sub

See Also