Print BackColor?

Is there any way to have documents printed with the backcolor?

There’s no flag to set to allow that. You can create your own GoView class with:



protected override void PaintBackgroundDecoration(Graphics g, RectangleF clipRect) {

if (this.IsPrinting) {

this.PaintPaperColor(g, clipRect);

}

base.PaintBackgroundDecoration(g, clipRect);

}