Question

Is there any way to Maximize the Print Preview Dialogue?

I could not see any Maximize property on the controls at properties window.

Was it helpful?

Solution

It's not available in the properties page because you have to cast the PrintPreviewDialog to a Form in order to access those Form properties:

DirectCast(PrintPreviewDialog1, Form).WindowState = FormWindowState.Maximized

OTHER TIPS

For C#:

(PrintPreviewDialog1 as Form).WindowState = FormWindowState.Maximized;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top