12 references to Graphics
System.Drawing (1)
commonui\System\Drawing\Printing\PrintController.cs (1)
244pageEvent.Graphics.Dispose();
System.Windows.Forms.DataVisualization (9)
WinForm\Utilities\Printing.cs (9)
246GraphicsState transState = ev.Graphics.Save(); 252if (ev.Graphics.PageUnit != GraphicsUnit.Pixel) 254ev.Graphics.PageUnit = GraphicsUnit.Pixel; 255marginPixel.X = (int)(marginPixel.X * (ev.Graphics.DpiX / 100.0f)); 256marginPixel.Y = (int)(marginPixel.Y * (ev.Graphics.DpiY / 100.0f)); 257marginPixel.Width = (int)(marginPixel.Width * (ev.Graphics.DpiX / 100.0f)); 258marginPixel.Height = (int)(marginPixel.Height * (ev.Graphics.DpiY / 100.0f)); 274this.PrintPaint(ev.Graphics, chartPosition); 279ev.Graphics.Restore(transState);
System.Workflow.ComponentModel (2)
AuthoringOM\Design\WorkflowPrinting.cs (2)
112Graphics graphics = printPageArg.Graphics; 308Graphics graphics = printPageArg.Graphics;