33 references to PageScaling
ReachFramework (33)
PrintConfig\PageScaling.cs (20)
33_value = PageScaling.Unspecified; 48public PageScaling Value 129internal 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) 444/// <see cref="PageScaling.Unspecified"/>. 446public PageScaling Value 450return (PageScaling)this[PrintSchemaTags.Framework.OptionNameProperty]; 458/// If current page scaling setting is not <see cref="PageScaling.Custom"/>, 465if (this.Value != PageScaling.Custom) 476/// If current page scaling setting is not <see cref="PageScaling.Custom"/>, 483if (this.Value != PageScaling.Custom) 494/// If current page scaling setting is not <see cref="PageScaling.CustomSquare"/>, 501if (this.Value != PageScaling.CustomSquare) 532this[PrintSchemaTags.Framework.OptionNameProperty] = (int)PageScaling.CustomSquare; 543if ((Value != PageScaling.Custom) || (Value != PageScaling.CustomSquare))
PrintConfig\PrintSchema.cs (6)
1753internal static PageScaling PageScalingEnumMin = PageScaling.Unspecified; 1754internal static PageScaling PageScalingEnumMax = PageScaling.CustomSquare; 2116internal static string[] ScalingNames = Enum.GetNames(typeof(PageScaling)); 2117internal 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) &&