Skip to main content
A newer version of this page is available. .

ReportViewerSettings.PrintUsingAdobePlugIn Property

Specifies whether or not to print a report using the Adobe Reader® plug-in, assuming it is installed on the client’s web browser.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public bool PrintUsingAdobePlugIn { get; set; }

Property Value

Type Description
Boolean

true to print a report using the Adobe Reader® plug-in; otherwise, false. The default is true.

Property Paths

You can access this nested property as listed below:

Object Type Path to PrintUsingAdobePlugIn
ReportViewerExtension
.Settings.PrintUsingAdobePlugIn

Remarks

The printing engine of a client web browser is capable of overriding a document’s print settings (such as paper kind, margins, etc.), which makes it impossible to guarantee consistent printing for any report.

To secure consistent printing results, as well as avoid having to evaluate the print settings prior to each printing operation, consider installing the Adobe Reader® plug-in in all client web browsers. To ensure that all of a report’s print settings remain intact by the time the Print dialog is invoked, this browser plug-in first converts a report to PDF and then prints the resulting file.

To seek this plug-in each time a web report is committed to print, enable the PrintUsingAdobePlugIn property.

For more information, refer to the Printing Overview topic.

See Also