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

Glossary Item Box

The ActiveReports Tag Image File Format (TIFF) Export Component.

Object Model

TiffExport Class

Syntax

Visual Basic (Declaration) 
Public Class TiffExport 
   Inherits System.ComponentModel.Component
   Implements GrapeCity.ActiveReports.Export.IDocumentExportGrapeCity.ActiveReports.Export.IDocumentExportEx 
C# 
public class TiffExport : System.ComponentModel.Component, GrapeCity.ActiveReports.Export.IDocumentExportGrapeCity.ActiveReports.Export.IDocumentExportEx  

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

Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         GrapeCity.ActiveReports.Export.Image.Tiff.Section.TiffExport

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