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