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