14 references to PageScaling
ReachFramework (14)
PrintConfig\PrintSchemaShim.cs (6)
350switch (deltaTicket.PageScaling.Value) 354SetScale(baseDevMode, deltaTicket.PageScaling.CustomScaleWidth); 360SetScale(baseDevMode, deltaTicket.PageScaling.CustomSquareScale); 1066ticket.PageScaling.ClearSetting(); 1067ticket.PageScaling[PrintSchemaTags.Framework.OptionNameProperty] = (int)PageScaling.None; 1071ticket.PageScaling.SetCustomSquareScaling(devModeScale);
PrintConfig\PrtTicket_Public_Simple.cs (8)
1091if ((_printTicket.PageScaling.Value == PageScaling.CustomSquare) && 1092(_printTicket.PageScaling.CustomSquareScale > 0)) 1094return _printTicket.PageScaling.CustomSquareScale; 1096else if ((_printTicket.PageScaling.Value == PageScaling.Custom) && 1097(_printTicket.PageScaling.CustomScaleWidth > 0)) 1099return _printTicket.PageScaling.CustomScaleWidth; 1108_printTicket.PageScaling.ClearSetting(); 1119_printTicket.PageScaling.SetCustomSquareScaling((int)value);