Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public enum WinControlPrintMode

#Members

Name Description
Default

If a control is placed onto a DetailBand, ReportHeaderBand, or ReportFooterBand, 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