ActiveReports 9
Save Method (SectionDocument)
Example 

Saves the Document content to a stream or a file.
Overload List
OverloadDescription
Save(String,RdfFormat)Saves the report document to the specified file using the specified file format.  
Save(String,RdfFormat,SaveOptions)Saves the report document to the specified file using the specified file format with the specified compression.  
Save(String)Saves the report document to the specified file.  
Save(Stream,RdfFormat)Saves the Document content to a stream in the specified file format.  
Save(Stream,RdfFormat,SaveOptions)Saves the Document content to a stream in the specified file format with the specified compression.  
Save(Stream)Saves the Document content to a Stream.  
Example
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
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

SectionDocument Class
SectionDocument Members
Load method
LoadUrl property

How To

Save and Load Report Files (RDF)

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum