14 references to PageScaling
ReachFramework (14)
PrintConfig\PrintSchemaShim.cs (6)
345switch (deltaTicket.PageScaling.Value) 349SetScale(baseDevMode, deltaTicket.PageScaling.CustomScaleWidth); 355SetScale(baseDevMode, deltaTicket.PageScaling.CustomSquareScale); 1061ticket.PageScaling.ClearSetting(); 1062ticket.PageScaling[PrintSchemaTags.Framework.OptionNameProperty] = (int)PageScaling.None; 1066ticket.PageScaling.SetCustomSquareScaling(devModeScale);
PrintConfig\PrtTicket_Public_Simple.cs (8)
1083if ((_printTicket.PageScaling.Value == PageScaling.CustomSquare) && 1084(_printTicket.PageScaling.CustomSquareScale > 0)) 1086return _printTicket.PageScaling.CustomSquareScale; 1088else if ((_printTicket.PageScaling.Value == PageScaling.Custom) && 1089(_printTicket.PageScaling.CustomScaleWidth > 0)) 1091return _printTicket.PageScaling.CustomScaleWidth; 1100_printTicket.PageScaling.ClearSetting(); 1111_printTicket.PageScaling.SetCustomSquareScaling((int)value);