9 references to DeviceCap
ReachFramework (9)
MS\Internal\Printing\Configuration\UnsafeNativeMethods.cs (1)
283
public static extern int GetDeviceCaps(HandleRef hdc,
DeviceCap
capability);
MS\Internal\Printing\Configuration\WinSpoolPrinterCapabilities.cs (8)
71
logicalPixelsX = UnsafeNativeMethods.GetDeviceCaps(hdcRef,
DeviceCap
.LOGPIXELSX);
72
logicalPixelsY = UnsafeNativeMethods.GetDeviceCaps(hdcRef,
DeviceCap
.LOGPIXELSY);
73
physicalWidth = UnsafeNativeMethods.GetDeviceCaps(hdcRef,
DeviceCap
.PHYSICALWIDTH);
74
physicalHeight = UnsafeNativeMethods.GetDeviceCaps(hdcRef,
DeviceCap
.PHYSICALHEIGHT);
75
physicalOffsetX = UnsafeNativeMethods.GetDeviceCaps(hdcRef,
DeviceCap
.PHYSICALOFFSETX);
76
physicalOffsetY = UnsafeNativeMethods.GetDeviceCaps(hdcRef,
DeviceCap
.PHYSICALOFFSETY);
77
horizontalResolution = UnsafeNativeMethods.GetDeviceCaps(hdcRef,
DeviceCap
.HORZRES);
78
verticalResolution = UnsafeNativeMethods.GetDeviceCaps(hdcRef,
DeviceCap
.VERTRES);