2 writes to imageSize
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Printing\PrintPreviewControl.cs (2)
441
imageSize
= new Size((int) (zoom*pageSize.Width), (int) (zoom*pageSize.Height));
610
imageSize
= new Size((int) (zoom*pageSize.Width), (int) (zoom*pageSize.Height));
3 references to imageSize
System.Windows.Forms (3)
winforms\Managed\System\WinForms\Printing\PrintPreviewControl.cs (3)
442
int virtualX = (
imageSize
.Width * columns) + border * (columns +1);
443
int virtualY = (
imageSize
.Height * rows) + border * (rows +1);
611
Point imagePixels = PhysicalToPixels(new Point(
imageSize
), screendpi);