Skip to content

peICMMethod - cPrintDialog

Methods - Properties

Type

Short

Default

0

Arguments

None

Description

Specifies how ICM is handled.

For a non-ICM application, this member determines if ICM is enabled or disabled.

For ICM applications, the system examines this member to determine how to handle ICM support.

This member can be one of the predefined DMICMMETHOD_* constants, or a driver-defined value greater than or equal to the value of DMICMMETHOD_USER.

Sample

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

    Procedure OnInitializeReport
        Handle hoPrintDialog

        Forward Send OnInitializeReport

        Get phoPrintDialog to hoPrintDialog
        Set peICMMethod of hoPrintDialog to DMICMMETHOD_NONE
    End_Procedure
End_Object