33 references to PageScaling
ReachFramework (33)
PrintConfig\PageScaling.cs (20)
42_value = PageScaling.Unspecified; 57public PageScaling Value 138internal PageScaling _value; 198option._value = (PageScaling)enumValue; 202if (option.Value != PageScaling.Unspecified) 204if (option.Value == PageScaling.None) 209else if (option.Value == PageScaling.Custom) 232else if (option.Value == PageScaling.CustomSquare) 452/// <see cref="PageScaling.Unspecified"/>. 454public PageScaling Value 458return (PageScaling)this[PrintSchemaTags.Framework.OptionNameProperty]; 466/// If current page scaling setting is not <see cref="PageScaling.Custom"/>, 473if (this.Value != PageScaling.Custom) 484/// If current page scaling setting is not <see cref="PageScaling.Custom"/>, 491if (this.Value != PageScaling.Custom) 502/// If current page scaling setting is not <see cref="PageScaling.CustomSquare"/>, 509if (this.Value != PageScaling.CustomSquare) 540this[PrintSchemaTags.Framework.OptionNameProperty] = (int)PageScaling.CustomSquare; 551if ((Value != PageScaling.Custom) || (Value != PageScaling.CustomSquare))
PrintConfig\PrintSchema.cs (6)
1758internal static PageScaling PageScalingEnumMin = PageScaling.Unspecified; 1759internal static PageScaling PageScalingEnumMax = PageScaling.CustomSquare; 2121internal static string[] ScalingNames = Enum.GetNames(typeof(PageScaling)); 2122internal static int[] ScalingEnums = (int[])(Array)Enum.GetValues<PageScaling>();
PrintConfig\PrintSchemaShim.cs (3)
352case PageScaling.Custom: 358case PageScaling.CustomSquare: 1067ticket.PageScaling[PrintSchemaTags.Framework.OptionNameProperty] = (int)PageScaling.None;
PrintConfig\PrtCap_Public_Simple.cs (2)
763if (option.Value == PageScaling.Custom) 783else if (option.Value == PageScaling.CustomSquare)
PrintConfig\PrtTicket_Public_Simple.cs (2)
1091if ((_printTicket.PageScaling.Value == PageScaling.CustomSquare) && 1096else if ((_printTicket.PageScaling.Value == PageScaling.Custom) &&