GrapeCity ActiveReports for .NET 14.0J
Dither プロパティ (TiffExport)
使用例 

GrapeCity.ActiveReports.Export.Image アセンブリ > GrapeCity.ActiveReports.Export.Image.Tiff.Section 名前空間 > TiffExport クラス : Dither プロパティ
イメージをCCITT3のような白黒の出力フォーマットに保存する場合、ディザリングするかどうかを指定します。CompressionSchemeプロパティが、LzwまたはNone (カラー出力を示す)の場合、このプロパティは無効になります。
シンタックス
'宣言
 
Public Property Dither As Boolean
public bool Dither {get; set;}

プロパティ値

ブール値。デフォルト値はFalseです。
使用例
private void btnExport_Click(Object sender, System.EventArgs e)
{
    rptGrapeCity rpt = new rptGrapeCity();
    GrapeCity.ActiveReports.Export.Image.Tiff.Section.TiffExport t = new GrapeCity.ActiveReports.Export.Image.Tiff.Section.TiffExport();
    rpt.Run();
    this.arv.Document = rpt.Document;
    t.CompressionScheme = GrapeCity.ActiveReports.Export.Image.Tiff.Section.CompressionScheme.Ccitt3;
    t.Dither = True;
    t.Export(rpt.Document, Application.StartupPath + "\\t.tiff","1-2");
}
Private Sub btnExport_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExport.Click
    Dim rpt As New rptDD
    Dim t As New GrapeCity.ActiveReports.Export.Tiff.TiffExport
    rpt.Run()
    Me.Viewer1.Document = rpt.Document
    t.CompressionScheme = GrapeCity.ActiveReports.Export.Tiff.CompressionScheme.Ccitt3
    t.Dither = True
    t.Export(rpt.Document, Application.StartupPath & "\t.tiff")
End Sub
参照

TiffExport クラス
TiffExport メンバ