| Overload | Description | 
|---|---|
| Export(PageDocument,String) | Exports the specified document to a TIFF file. | 
| Export(PageDocument,String,String) | Exports the specified document to a TIFF file. | 
| Export(PageDocument,Stream) | Exports the specified document to the specified stream in TIFF. | 
| Export(PageDocument,Stream,String) | Exports the specified document to the specified stream in TIFF. | 
| Export(SectionDocument,String,String) | Exports the specified range of pages from the document to a TIFF file. | 
| Export(SectionDocument,String) | Exports the specified document to a TIFF file. | 
| Export(SectionDocument,Stream) | Exports the document to the specified stream. | 
| Export(SectionDocument,Stream,String) | Exports the specified range of pages from the document to the specified stream. | 
| Visual Basic |  Copy Code | 
|---|---|
| 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") | |
| C# |  Copy Code | 
|---|---|
| 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"); | |
 
     
     
     
    