33 references to PageScaling
ReachFramework (33)
PrintConfig\PageScaling.cs (20)
35_value = PageScaling.Unspecified; 50public PageScaling Value 131internal PageScaling _value; 191option._value = (PageScaling)enumValue; 195if (option.Value != PageScaling.Unspecified) 197if (option.Value == PageScaling.None) 202else if (option.Value == PageScaling.Custom) 225else if (option.Value == PageScaling.CustomSquare) 445/// <see cref="PageScaling.Unspecified"/>. 447public PageScaling Value 451return (PageScaling)this[PrintSchemaTags.Framework.OptionNameProperty]; 459/// If current page scaling setting is not <see cref="PageScaling.Custom"/>, 466if (this.Value != PageScaling.Custom) 477/// If current page scaling setting is not <see cref="PageScaling.Custom"/>, 484if (this.Value != PageScaling.Custom) 495/// If current page scaling setting is not <see cref="PageScaling.CustomSquare"/>, 502if (this.Value != PageScaling.CustomSquare) 533this[PrintSchemaTags.Framework.OptionNameProperty] = (int)PageScaling.CustomSquare; 544if ((Value != PageScaling.Custom) || (Value != PageScaling.CustomSquare))
PrintConfig\PrintSchema.cs (6)
1755internal static PageScaling PageScalingEnumMin = PageScaling.Unspecified; 1756internal static PageScaling PageScalingEnumMax = PageScaling.CustomSquare; 2118internal static string[] ScalingNames = Enum.GetNames(typeof(PageScaling)); 2119internal static int[] ScalingEnums = (int[])(Array)Enum.GetValues<PageScaling>();
PrintConfig\PrintSchemaShim.cs (3)
348case PageScaling.Custom: 354case PageScaling.CustomSquare: 1063ticket.PageScaling[PrintSchemaTags.Framework.OptionNameProperty] = (int)PageScaling.None;
PrintConfig\PrtCap_Public_Simple.cs (2)
757if (option.Value == PageScaling.Custom) 777else if (option.Value == PageScaling.CustomSquare)
PrintConfig\PrtTicket_Public_Simple.cs (2)
1084if ((_printTicket.PageScaling.Value == PageScaling.CustomSquare) && 1089else if ((_printTicket.PageScaling.Value == PageScaling.Custom) &&