Skip to content

peMode - cWebDRReportViewer

Type

Integer

Default

C_HTMLOUTPUT

Arguments

None

Description

Used to tell the control whether the data contains an array of strings with HTML data or an array of image file names (C_IMAGEOUTPUT).

Sample

Object oReport is a cWebDRReport
    Set psReportName to "Report.dr"
End_Object

Object oViewer is a cWebDRReportViewer
    Set peMode to C_IMAGEOUTPUT
    Set phoReport to oReport
End_Object

Object oShowReportButton is a cWebButton
    Procedure OnClick
        Send ShowReport of oViewer
    End_Procedure
End_Object