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

PrintControl.DockManager Property

Provides access to the DockManager, specifying the settings of dock panels in Print Preview.

Namespace: DevExpress.XtraPrinting.Control

Assembly: DevExpress.XtraPrinting.v18.2.dll

Declaration

[Browsable(false)]
public DockManager DockManager { get; }

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