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

WinControlPrintMode Enum

Specifies how the Windows Forms control that is embedded using a WinControlContainer should be rendered in a report.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v18.2.dll

Declaration

public enum WinControlPrintMode

Members

Name Description
Default

If a control is placed onto a DetailBand, it is printed as a set of bricks, if possible. If a control is placed onto any other report band, it is printed as an image.

AsImage

A control is always printed as an image.

AsBricks

A control is always printed as a set of bricks, if possible. It is possible, for example, in the case of a GridControl, PivotGridControl and other Developer Express controls. If a control can’t be represented as a set of bricks, it is printed as an image.

Related API Members

The following properties accept/return WinControlPrintMode values:

Remarks

Use this enumeration’s members to determine whether a Windows Forms control’s contents should be rendered as a set of Printing System bricks(if possible), or as an image. This enumeration is used by the WinControlContainer.PrintMode property.

See Also