ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Export.Word Assembly / GrapeCity.ActiveReports.Export.Word.Section Namespace / RtfExport Class / Export Method
Example

In This Topic
    Export Method (RtfExport)
    In This Topic
    Exports the specified document to RTF format.
    Overload List
    OverloadDescription
    Exports the specified document to a Rich Text Format (RTF) file.  
    Exports the specified document to a Rich Text Format (RTF) file.  
    Exports the specified document to the specified stream in Rich Text Format (RTF).  
    Exports the specified document to the specified stream in Rich Text Format (RTF).  
    Exports the specified IReport to file  
    Exports the specified IReport to file  
    Exports the specified IReport to stream  
    Exports the specified IReport to stream  
    Exports the specified range of pages of the document to a Rich Text Format (RTF) file.  
    Exports the specified document to a Rich Text Format (RTF) file.  
    Exports the specified document to the specified stream in Rich Text Format (RTF).  
    Exports the specified range of pages of the document to the specified stream in Rich Text Format (RTF).  
    Example
    private void btnExport_Click(object sender, System.EventArgs e)
    {
        rptGrapeCity rpt = new rptGrapeCity();
        GrapeCity.ActiveReports.Export.Word.Section.RtfExport r = new GrapeCity.ActiveReports.Export.Word.Section.RtfExport();
        rpt.Run();
        this.Viewer1.Document = rpt.Document;
        r.Export(rpt.Document, Application.StartupPath + "\\r.rtf");
    }
    Private Sub btnExport_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Dim rpt As New SectionReport
        Dim r As New GrapeCity.ActiveReports.Export.Word.Section.RtfExport
        rpt.Run()
        Me.Viewer1.Document = rpt.Document
        r.Export(rpt.Document, Application.StartupPath & "\r.rtf")
    End Sub
    See Also