Skip to content

peDitherType - cPrintDialog

Methods - Properties

Type

UInteger

Default

0

Arguments

None

Description

Specifies how dithering is to be done. The member can be one of the predefined DMDITHER_* values, or a driver-defined value greater than or equal to the value of DMDITHER_USER.

Sample

Object oReport is a cDRReport
    Set psReportName to 'MyReport.dr'

    Procedure OnInitializeReport
        Handle hoPrintDialog

        Forward Send OnInitializeReport

        Get phoPrintDialog to hoPrintDialog
        Set peDitherType of hoPrintDialog to DMDITHER_FINE
    End_Procedure
End_Object