10 references to DM_PAPERSIZE
ReachFramework (10)
MS\Internal\Printing\Configuration\DevMode.cs (2)
140this.SetField(DevModeFields.DM_PAPERSIZE); 427Copy(DevModeFields.DM_PAPERSIZE, fields, src.PaperSize, (short value) => this.PaperSize = value);
MS\Internal\Printing\Configuration\WinSpoolPrinterCapabilities.cs (1)
334if (defaultDevMode.IsFieldSet(DevModeFields.DM_PAPERSIZE))
PrintConfig\FallbackPTProvider.cs (1)
428if (originalDevMode.IsAnyFieldSet(DevModeFields.DM_PAPERWIDTH | DevModeFields.DM_PAPERLENGTH | DevModeFields.DM_PAPERSIZE))
PrintConfig\PrintSchemaShim.cs (6)
228if (IsSet(DevModeFields.DM_PAPERSIZE, supportedFields) 231&& deltaDevMode.IsAnyFieldSet(DevModeFields.DM_PAPERSIZE | DevModeFields.DM_PAPERWIDTH | DevModeFields.DM_PAPERLENGTH)) 326if (IsSet(DevModeFields.DM_PAPERSIZE, supportedFields) 445if (inDevMode.IsFieldSet(DevModeFields.DM_PAPERSIZE) && !papers.Contains(inDevMode.PaperSize)) 726bool hasPaperSize = (devModeFields & DevModeFields.DM_PAPERSIZE) == DevModeFields.DM_PAPERSIZE;