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