PrintControl.DockManager Property
Provides access to the DockManager, specifying the settings of dock panels in Print Preview.
Namespace: DevExpress.XtraPrinting.Control
Assembly: DevExpress.XtraPrinting.v24.1.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.Printing
Declaration
Property Value
Type | Description |
---|---|
DockManager | A DockManager object. |
Example
This example demonstrates how dock panels can be obtained in a report’s preview via the PrintControl.DockManager
property.
XtraReport1 report = new XtraReport1();
report.CreateDocument();
ReportPrintTool tool = new ReportPrintTool(report);
tool.PreviewForm.Shown += PreviewForm_Shown;
// ...
void PreviewForm_Shown(object sender, EventArgs e) {
PrintPreviewFormEx previewForm = sender as PrintPreviewFormEx;
DevExpress.XtraBars.Docking.DockPanel paramsPanel = previewForm.PrintControl.DockManager[1];
}
See Also