PrintConfig\PrintSchemaShim.cs (10)
555ticket.JobCopyCount.Value = Clamp(devModeCopies, 1, short.MaxValue);
560devMode.Copies = Clamp(copyCount, 1, short.MaxValue);
746w = LengthValueFromTenthOfMillimeterToDIP(Clamp(devModePaperWidth, 1, short.MaxValue));
752h = LengthValueFromTenthOfMillimeterToDIP(Clamp(devModePaperHeight, 1, short.MaxValue));
773devMode.PaperLength = Clamp(LengthValueFromDIPToTenthOfMillimeter(pageHeightInDIPs), 1, short.MaxValue);
778devMode.PaperWidth = Clamp(LengthValueFromDIPToTenthOfMillimeter(pageWidthInDIPs), 1, short.MaxValue);
990short devModXResolution = Clamp(dpiX, 1, short.MaxValue);
1000short devModYResolution = Clamp(dpiY, 1, short.MaxValue);
1011short devModYResolution = Clamp(dpiY, 1, short.MaxValue);
1072devMode.Scale = Clamp(scale, short.MinValue, short.MaxValue);