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