ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Document Assembly / GrapeCity.ActiveReports.Document Namespace / SectionDocument Class / Save Method / Save(String,RdfFormat,SaveOptions) Method
File path where the document will be saved.
Uses the RdfFormat enumeration to specify the file format in which to save the report.

Uses the SaveOptions enumeration to specify the compression to use on the document.

Example

In This Topic
    Save(String,RdfFormat,SaveOptions) Method
    In This Topic
    Saves the report document to the specified file using the specified file format with the specified compression.
    Syntax
    'Declaration
     
    Public Overloads Sub Save( _
       ByVal fileName As String, _
       ByVal fmt As RdfFormat, _
       ByVal options As SaveOptions _
    ) 
    public void Save( 
       string fileName,
       RdfFormat fmt,
       SaveOptions options
    )

    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.
    options

    Uses the SaveOptions enumeration to specify the compression to use on the document.

    Example
    private void btnSave_Click(object sender, System.EventArgs e)
    {
        arv.Document.Save(Application.StartupPath + "\\Document.rdf", GrapeCity.ActiveReports.Document.Section.RdfFormat.AR20, GrapeCity.ActiveReports.Document.Section.SaveOptions.Compressed);
    }
    Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click
        arv.Document.Save(Application.StartupPath & "\Document.rdf", GrapeCity.ActiveReports.Document.Secction.RdfFormat.AR20, GrapeCity.ActiveReports.Document.Section.SaveOptions.Compressed)
    End Sub
    See Also