ActiveReports 6 Online Help
Save(String,RdfFormat) Method
Example 

File path where the document will be saved.
Uses the RdfFormat enumeration to specify the file format in which to save the report.
Saves the report document to the specified file using the specified file format.
Syntax
'Declaration
 
Public Overloads Sub Save( _
   ByVal fileName As String, _
   ByVal fmt As RdfFormat _
) 
public void Save( 
   string fileName,
   RdfFormat fmt
)

Parameters

fileName
File path where the document will be saved.
fmt
Uses the RdfFormat enumeration to specify the file format in which to save the report.
Example
private void btnSave_Click(object sender, System.EventArgs e)
{
    arv.Document.Save(Application.StartupPath + "\\Document.rdf", DataDynamics.ActiveReports.Document.RdfFormat.AR20);
}
Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click
    arv.Document.Save(Application.StartupPath & "\Document.rdf", DataDynamics.ActiveReports.Document.RdfFormat.AR20)
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

Document Class
Document Members
Overload List
Load method
LoadUrl property

Send Feedback