ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Export.Image Assembly / GrapeCity.ActiveReports.Export.Image.Tiff.Section Namespace / TiffExport Class / Export Method
Example

In This Topic
    Export Method (TiffExport)
    In This Topic
    Exports the specified document to TIFF format.
    Overload List
    OverloadDescription
    Exports the specified range of pages from the document to a TIFF file.  
    Exports the specified document to a TIFF file.  
    Exports the document to the specified stream.  
    Exports the specified range of pages from the document to the specified stream.  
    Example
    Dim rpt As New SectionReport1()
    rpt.Run()
    Me.tiffExport1.CompressionScheme = GrapeCity.ActiveReports.Export.Image.Tiff.Section.CompressionScheme.None
    'SettingAtheACompressionSchemeAtoANoneAallowsAcolorsAtoAbeAexported
    Me.tiffExport1.Export(rpt.Document,Application.StartupPath & "\t.tiff")
    SectionReport1 rpt = new SectionReport1();
    rpt.Run();
    this.tiffExport1.CompressionScheme = GrapeCity.ActiveReports.Export.Image.Tiff.Section.CompressionScheme.None;
    //SettingAtheACompressionSchemeAToANoneAallowsAcolorsAToAbeAexported
    this.tiffExport1.Export(rpt.Document, Application.StartupPath + "\\t.tiff");
    See Also