xtrareports-devexpress-dot-xtrareports-dot-ui-b7d61822.md
Specifies how the Windows Forms control that is embedded using a WinControlContainer should be drawn in a report.
Namespace : DevExpress.XtraReports.UI
Assembly : DevExpress.XtraReports.v25.2.dll
NuGet Package : DevExpress.Reporting.Core
public enum WinControlDrawMethod
Public Enum WinControlDrawMethod
| Name | Description |
|---|---|
UseWMPaint |
Use the WM_PAINT message to draw the Windows Forms control.
|
| UseWMPrint |
Use the WM_PRINT message to draw the Windows Forms control.
|
| UseWMPaintRecursive |
Use the WM_PAINT message to recursively draw the Windows Forms control and all its child controls.
|
| UseWMPrintRecursive |
Use the WM_PRINT message to recursively draw the Windows Forms control and all its child controls.
|
The following properties accept/return WinControlDrawMethod values:
Use this enumeration’s members to determine what drawing method is used to draw the specified Windows Forms control. This enumeration is used by the WinControlContainer.DrawMethod property.
See Also