ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Export.Excel Assembly / GrapeCity.ActiveReports.Export.Excel.Section Namespace / XlsExport Class / Export Method
Example

In This Topic
    Export Method (XlsExport)
    In This Topic
    Exports the specified document to Excel format.
    Overload List
    OverloadDescription
    Exports the specified document to an Excel file.  
    Exports the specified range of pages in a document to an Excel file.  
    Exports the specified document to a stream in Excel format.  
    Exports the specified range of pages in a document to a stream in Excel format.  
    Remarks
    Only when the output on the report is valid for the following conditions, the format settings of the cells exported to Excel are set automatically.
    Example
    private void Form1_Load(object sender, System.EventArgs e) 
    { 
        rptExports rpt = new rptExports(); 
        this.viewer1.Document = rpt.Document; 
        rpt.Run(false); 
     
        xlsExport1.Export(this.viewer1.Document, Application.StartupPath + "\\x.xls"); 
    }
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim rpt As New rptExports()
        Viewer1.Document = rpt.Document
        rpt.Run(False)
    
        XlsExport1.Export(rpt.Document, Application.StartupPath + "\x.xls")
    End Sub
    See Also