10 references to DM_PAPERWIDTH
ReachFramework (10)
MS\Internal\Printing\Configuration\DevMode.cs (2)
167this.SetField(DevModeFields.DM_PAPERWIDTH); 428Copy(DevModeFields.DM_PAPERWIDTH, fields, src.PaperWidth, (short value) => this.PaperWidth = value);
MS\Internal\Printing\Configuration\WinSpoolPrinterCapabilities.cs (2)
318hasWidth = defaultDevMode.IsFieldSet(DevModeFields.DM_PAPERWIDTH); 325hasHeight = defaultDevMode.IsFieldSet(DevModeFields.DM_PAPERWIDTH);
PrintConfig\FallbackPTProvider.cs (1)
424if (originalDevMode.IsAnyFieldSet(DevModeFields.DM_PAPERWIDTH | DevModeFields.DM_PAPERLENGTH | DevModeFields.DM_PAPERSIZE))
PrintConfig\PrintSchemaShim.cs (5)
228&& IsSet(DevModeFields.DM_PAPERWIDTH, supportedFields) 230&& deltaDevMode.IsAnyFieldSet(DevModeFields.DM_PAPERSIZE | DevModeFields.DM_PAPERWIDTH | DevModeFields.DM_PAPERLENGTH)) 313if (IsSet(DevModeFields.DM_PAPERWIDTH, supportedFields) 739bool hasWidth = (devModeFields & DevModeFields.DM_PAPERWIDTH) == DevModeFields.DM_PAPERWIDTH;