33 references to PageScaling
ReachFramework (33)
PrintConfig\PageScaling.cs (20)
32_value = PageScaling.Unspecified; 47public PageScaling Value 128internal PageScaling _value; 190option._value = (PageScaling)enumValue; 194if (option.Value != PageScaling.Unspecified) 196if (option.Value == PageScaling.None) 201else if (option.Value == PageScaling.Custom) 224else if (option.Value == PageScaling.CustomSquare) 443/// <see cref="PageScaling.Unspecified"/>. 445public PageScaling Value 449return (PageScaling)this[PrintSchemaTags.Framework.OptionNameProperty]; 457/// If current page scaling setting is not <see cref="PageScaling.Custom"/>, 464if (this.Value != PageScaling.Custom) 475/// If current page scaling setting is not <see cref="PageScaling.Custom"/>, 482if (this.Value != PageScaling.Custom) 493/// If current page scaling setting is not <see cref="PageScaling.CustomSquare"/>, 500if (this.Value != PageScaling.CustomSquare) 531this[PrintSchemaTags.Framework.OptionNameProperty] = (int)PageScaling.CustomSquare; 542if ((Value != PageScaling.Custom) || (Value != PageScaling.CustomSquare))
PrintConfig\PrintSchema.cs (6)
1752internal static PageScaling PageScalingEnumMin = PageScaling.Unspecified; 1753internal static PageScaling PageScalingEnumMax = PageScaling.CustomSquare; 2115internal static string[] ScalingNames = Enum.GetNames(typeof(PageScaling)); 2116internal static int[] ScalingEnums = (int[])(Array)Enum.GetValues<PageScaling>();
PrintConfig\PrintSchemaShim.cs (3)
347case PageScaling.Custom: 353case PageScaling.CustomSquare: 1062ticket.PageScaling[PrintSchemaTags.Framework.OptionNameProperty] = (int)PageScaling.None;
PrintConfig\PrtCap_Public_Simple.cs (2)
756if (option.Value == PageScaling.Custom) 776else if (option.Value == PageScaling.CustomSquare)
PrintConfig\PrtTicket_Public_Simple.cs (2)
1083if ((_printTicket.PageScaling.Value == PageScaling.CustomSquare) && 1088else if ((_printTicket.PageScaling.Value == PageScaling.Custom) &&