ActiveReports 8
Export Method
See Also  Example
GrapeCity.ActiveReports.Export.Image.v8 Assembly > GrapeCity.ActiveReports.Export.Image.Tiff.Section Namespace > TiffExport Class : Export Method

Glossary Item Box

Exports the specified document to TIFF format.

Overload List

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

Example

Visual BasicCopy 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");

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also