10 references to DM_PAPERSIZE
ReachFramework (10)
MS\Internal\Printing\Configuration\DevMode.cs (2)
143this.SetField(DevModeFields.DM_PAPERSIZE); 430Copy(DevModeFields.DM_PAPERSIZE, fields, src.PaperSize, (short value) => this.PaperSize = value);
MS\Internal\Printing\Configuration\WinSpoolPrinterCapabilities.cs (1)
337if (defaultDevMode.IsFieldSet(DevModeFields.DM_PAPERSIZE))
PrintConfig\FallbackPTProvider.cs (1)
432if (originalDevMode.IsAnyFieldSet(DevModeFields.DM_PAPERWIDTH | DevModeFields.DM_PAPERLENGTH | DevModeFields.DM_PAPERSIZE))
PrintConfig\PrintSchemaShim.cs (6)
232if (IsSet(DevModeFields.DM_PAPERSIZE, supportedFields) 235&& deltaDevMode.IsAnyFieldSet(DevModeFields.DM_PAPERSIZE | DevModeFields.DM_PAPERWIDTH | DevModeFields.DM_PAPERLENGTH)) 330if (IsSet(DevModeFields.DM_PAPERSIZE, supportedFields) 449if (inDevMode.IsFieldSet(DevModeFields.DM_PAPERSIZE) && !papers.Contains(inDevMode.PaperSize)) 730bool hasPaperSize = (devModeFields & DevModeFields.DM_PAPERSIZE) == DevModeFields.DM_PAPERSIZE;