10 references to DM_PAPERWIDTH
ReachFramework (10)
MS\Internal\Printing\Configuration\DevMode.cs (2)
171this.SetField(DevModeFields.DM_PAPERWIDTH); 432Copy(DevModeFields.DM_PAPERWIDTH, fields, src.PaperWidth, (short value) => this.PaperWidth = value);
MS\Internal\Printing\Configuration\WinSpoolPrinterCapabilities.cs (2)
322hasWidth = defaultDevMode.IsFieldSet(DevModeFields.DM_PAPERWIDTH); 329hasHeight = defaultDevMode.IsFieldSet(DevModeFields.DM_PAPERWIDTH);
PrintConfig\FallbackPTProvider.cs (1)
432if (originalDevMode.IsAnyFieldSet(DevModeFields.DM_PAPERWIDTH | DevModeFields.DM_PAPERLENGTH | DevModeFields.DM_PAPERSIZE))
PrintConfig\PrintSchemaShim.cs (5)
233&& IsSet(DevModeFields.DM_PAPERWIDTH, supportedFields) 235&& deltaDevMode.IsAnyFieldSet(DevModeFields.DM_PAPERSIZE | DevModeFields.DM_PAPERWIDTH | DevModeFields.DM_PAPERLENGTH)) 318if (IsSet(DevModeFields.DM_PAPERWIDTH, supportedFields) 744bool hasWidth = (devModeFields & DevModeFields.DM_PAPERWIDTH) == DevModeFields.DM_PAPERWIDTH;