PrintableComponentContainer.PrintMode Property
Namespace: DevExpress.XtraReports.UI
Assembly:
DevExpress.XtraReports.v22.2.dll
NuGet Package:
DevExpress.Reporting.Core
Declaration
[Browsable(false)]
public override WinControlPrintMode PrintMode { get; set; }
<Browsable(False)>
Public Overrides Property PrintMode As WinControlPrintMode
Property Value
Available values:
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.
|
Use WindowControlOptions.PrintMode instead of this property.
See Also