10 references to DM_PAPERWIDTH
ReachFramework (10)
MS\Internal\Printing\Configuration\DevMode.cs (2)
168this.SetField(DevModeFields.DM_PAPERWIDTH); 429Copy(DevModeFields.DM_PAPERWIDTH, fields, src.PaperWidth, (short value) => this.PaperWidth = value);
MS\Internal\Printing\Configuration\WinSpoolPrinterCapabilities.cs (2)
319hasWidth = defaultDevMode.IsFieldSet(DevModeFields.DM_PAPERWIDTH); 326hasHeight = defaultDevMode.IsFieldSet(DevModeFields.DM_PAPERWIDTH);
PrintConfig\FallbackPTProvider.cs (1)
428if (originalDevMode.IsAnyFieldSet(DevModeFields.DM_PAPERWIDTH | DevModeFields.DM_PAPERLENGTH | DevModeFields.DM_PAPERSIZE))
PrintConfig\PrintSchemaShim.cs (5)
229&& IsSet(DevModeFields.DM_PAPERWIDTH, supportedFields) 231&& deltaDevMode.IsAnyFieldSet(DevModeFields.DM_PAPERSIZE | DevModeFields.DM_PAPERWIDTH | DevModeFields.DM_PAPERLENGTH)) 314if (IsSet(DevModeFields.DM_PAPERWIDTH, supportedFields) 740bool hasWidth = (devModeFields & DevModeFields.DM_PAPERWIDTH) == DevModeFields.DM_PAPERWIDTH;