14 references to PageScaling
ReachFramework (14)
PrintConfig\PrintSchemaShim.cs (6)
346switch (deltaTicket.PageScaling.Value) 350SetScale(baseDevMode, deltaTicket.PageScaling.CustomScaleWidth); 356SetScale(baseDevMode, deltaTicket.PageScaling.CustomSquareScale); 1062ticket.PageScaling.ClearSetting(); 1063ticket.PageScaling[PrintSchemaTags.Framework.OptionNameProperty] = (int)PageScaling.None; 1067ticket.PageScaling.SetCustomSquareScaling(devModeScale);
PrintConfig\PrtTicket_Public_Simple.cs (8)
1084if ((_printTicket.PageScaling.Value == PageScaling.CustomSquare) && 1085(_printTicket.PageScaling.CustomSquareScale > 0)) 1087return _printTicket.PageScaling.CustomSquareScale; 1089else if ((_printTicket.PageScaling.Value == PageScaling.Custom) && 1090(_printTicket.PageScaling.CustomScaleWidth > 0)) 1092return _printTicket.PageScaling.CustomScaleWidth; 1101_printTicket.PageScaling.ClearSetting(); 1112_printTicket.PageScaling.SetCustomSquareScaling((int)value);