17 references to DeviceContextType
System.Drawing (17)
misc\GDI\DeviceContext.cs (17)
87DeviceContextType dcType; 126public DeviceContextType DeviceContextType 147if( this.dcType == DeviceContextType.Display ) 231this.dcType = DeviceContextType.Display; 247private DeviceContext(IntPtr hDC, DeviceContextType dcType) 255if( dcType == DeviceContextType.Display ) 280return new DeviceContext( hdc, DeviceContextType.NamedDevice ); 293return new DeviceContext( hdc, DeviceContextType.Information ); 311return new DeviceContext(compatibleDc, DeviceContextType.Memory); 324return new DeviceContext(hdc, DeviceContextType.Unknown); 371case DeviceContextType.Display: 377case DeviceContextType.Information: 378case DeviceContextType.NamedDevice: 391case DeviceContextType.Memory: 411case DeviceContextType.Unknown: 433Debug.Assert( this.dcType == DeviceContextType.Display, "Calling GetDC from a non display/window device." ); 454if (this.hDC != IntPtr.Zero && this.dcType == DeviceContextType.Display)